-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.48 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.48 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
{
"name": "arebrov/valigara",
"description": "Testing task for valigara on symfony with docker",
"type": "project",
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=8.3",
"ext-ctype": "*",
"ext-iconv": "*",
"symfony/dotenv": "7.3.*",
"symfony/flex": "^2",
"symfony/framework-bundle": "7.3.*",
"symfony/property-access": "7.3.*",
"symfony/runtime": "7.3.*",
"symfony/serializer": "7.3.*",
"symfony/yaml": "7.3.*",
"amzn-spapi/sdk": "^1.6",
"nelmio/api-doc-bundle": "^4.23",
"symfony/twig-bundle": "^7.4",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^2.12|^3.0",
"symfony/asset": "*",
"swagger-api/swagger-ui": "^5.30"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.66",
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^10.4"
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"lint": "php-cs-fixer fix --dry-run --diff --allow-risky=yes --config=.php-cs-fixer.dist.php",
"lint:fix": "php-cs-fixer fix --allow-risky=yes --config=.php-cs-fixer.dist.php"
}
}