-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.54 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "cesurapp/storage-bundle",
"description": "Symfony storage bundle",
"homepage": "https://github.com/cesurapp/storage-bundle",
"keywords": ["storage-bundle", "storage", "symfony"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Cesur APAYDIN",
"email": "apaydin541@gmail.com"
}
],
"require": {
"php": ">=8.4",
"ext-fileinfo": "*",
"symfony/dependency-injection": "^8.0",
"symfony/http-kernel": "^8.0",
"symfony/framework-bundle": "^8.0",
"async-aws/s3": "^2.9"
},
"require-dev": {
"php-cs-fixer/shim": "^v3.9",
"phpstan/phpstan": "^2.1.33",
"phpunit/phpunit": "^12.5"
},
"autoload": {
"psr-4": {
"Cesurapp\\StorageBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cesurapp\\StorageBundle\\Tests\\": "tests/"
}
},
"scripts": {
"test": "@php ./vendor/bin/phpunit --colors",
"test:debug": "@php ./vendor/bin/phpunit --display-all-issues",
"test:stop": "@php ./vendor/bin/phpunit --testdox --colors --stop-on-failure",
"qa:fix": "vendor/bin/php-cs-fixer fix --ansi --allow-risky=yes",
"qa:lint": "vendor/bin/php-cs-fixer fix --dry-run --diff --ansi --allow-risky=yes",
"qa:phpstan": "vendor/bin/phpstan analyse --no-progress --ansi --memory-limit 512m",
"fix": [
"@qa:fix",
"@qa:phpstan",
"@test"
]
}
}