-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
70 lines (70 loc) · 2.05 KB
/
composer.json
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "nicwortel/symfony-skeleton",
"type": "project",
"description": "Skeleton for Symfony Flex applications",
"license": "proprietary",
"require": {
"php": "^8.0",
"symfony/console": "6.0.*",
"symfony/dotenv": "6.0.*",
"symfony/flex": "^1.12",
"symfony/framework-bundle": "6.0.*",
"symfony/monolog-bundle": "^3.5",
"symfony/runtime": "6.0.*",
"symfony/twig-bundle": "6.0.*",
"symfony/yaml": "6.0.*"
},
"require-dev": {
"behat/behat": "^3.9",
"behat/mink-browserkit-driver": "^2.0",
"behat/mink-goutte-driver": "^2.0",
"friends-of-behat/mink-extension": "^2.4",
"nicwortel/coding-standard": "^2.0",
"phpmd/phpmd": "^2.8",
"phpstan/phpstan": "^0.12.31",
"phpstan/phpstan-symfony": "^0.12.6",
"phpunit/phpunit": "^9.2",
"qossmic/deptrac-shim": "^0.20.0",
"squizlabs/php_codesniffer": "^3.5",
"symfony/profiler-pack": "^1.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/runtime": true
}
},
"extra": {
"symfony": {
"require": "6.0.*"
}
},
"autoload": {
"psr-4": {
"Vendor\\Project\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vendor\\Project\\Tests\\Unit\\": "tests/unit/",
"Vendor\\Project\\Tests\\Integration\\": "tests/integration/",
"Vendor\\Project\\Tests\\Acceptance\\": "tests/acceptance/",
"Vendor\\Project\\Tests\\System\\": "tests/system/"
}
},
"scripts": {
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"auto-scripts": {
"./setup.sh": "script",
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}