-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
87 lines (87 loc) · 2.81 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "integrated/integrated-standard",
"license": "MIT",
"type": "project",
"description": "Skeleton for a new Integrated based application, which includes the use of all core bundles",
"autoload": {
"psr-4": {
"App\\": "src/",
"Integrated\\Behat\\": "src/Behat/"
},
"classmap": [ "src/Kernel.php" ]
},
"autoload-dev": {
"psr-4": { "Tests\\": "tests/" }
},
"require": {
"php": ">=8.1",
"doctrine/doctrine-migrations-bundle": "~2.1",
"doctrine/orm": "~2.5",
"incenteev/composer-parameter-handler": "~2.1",
"integrated/integrated": "0.28.*",
"integrated/thompson-theme-bundle": "^0.20",
"leafo/scssphp": "^0.7.4",
"symfony/apache-pack": "^1.0",
"symfony/dotenv": "^5.4",
"symfony/flex": "^1.3.1",
"symfony/monolog-bundle": "^3.1",
"symfony/proxy-manager-bridge": "5.4.*"
},
"require-dev": {
"behat/behat": "^3.4",
"deployer/deployer": "^7",
"friends-of-behat/mink": "^1.9",
"friends-of-behat/mink-browserkit-driver": "^1.5",
"friends-of-behat/mink-extension": "^2.5",
"friends-of-behat/service-container-extension": "^1.1.0",
"friends-of-behat/symfony-extension": "^v2.2.1",
"phpstan/phpstan": "1.4.6",
"phpstan/phpstan-doctrine": "1.2.11",
"phpstan/phpstan-symfony": "1.1.5",
"phpunit/phpunit": "~8.5",
"squizlabs/php_codesniffer": "^3.1",
"symfony/debug-bundle": "5.4.*",
"symfony/maker-bundle": "^1.36",
"symfony/phpunit-bridge": "5.4.*",
"symfony/stopwatch": "5.4.*",
"symfony/var-dumper": "5.4.*",
"symfony/web-profiler-bundle": "5.4.*"
},
"scripts": {
"symfony-scripts": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
},
"config": {
"bin-dir": "bin",
"sort-packages": true,
"allow-plugins": {
"endroid/installer": true,
"symfony/flex": true,
"composer/package-versions-deprecated": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"symfony": {
"require": "5.4.*"
},
"branch-alias": {
"dev-release/0.15": "0.15-dev",
"dev-release/0.20": "0.20-dev",
"dev-release/0.25": "0.25-dev"
}
}
}