-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.34 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
{
"name": "rgeraads/hello-world",
"description": "Hello world",
"license": "MIT",
"require": {
"php": "^8.3",
"doctrine/dbal": "^4.0",
"doctrine/doctrine-migrations-bundle": "^3.2",
"guzzlehttp/guzzle": "^7.5",
"ramsey/uuid": "^4.7",
"symfony/console": "^7.0",
"symfony/dotenv": "^7.0",
"symfony/flex": "^2.2",
"symfony/framework-bundle": "^7.0",
"symfony/runtime": "^7.0",
"symfony/yaml": "^7.0"
},
"require-dev": {
"dama/doctrine-test-bundle": "^8.0",
"friendsofphp/php-cs-fixer": "^3.10",
"phpstan/phpstan": "^1.8",
"symfony/browser-kit": "^7.0",
"symfony/phpunit-bridge": "^7.0"
},
"conflict": {
"symfony/symfony": "*"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\Functional\\": "tests/functional/",
"App\\Tests\\Unit\\": "tests/unit/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}