-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.06 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.06 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
{
"name": "darkwebdesign/symfony-addon-bundle",
"type": "library",
"description": "Symfony Add-on Bundle",
"keywords": ["bundle", "symfony"],
"homepage": "https://www.darkwebdesign.nl/",
"license": "MIT",
"authors": [
{"name": "Raymond Schouten"}
],
"require": {
"php": "^8.2",
"darkwebdesign/symfony-addon-pack": "7.4.*",
"doctrine/doctrine-bundle": "*",
"symfony/config": "7.4.*",
"symfony/dependency-injection": "7.4.*",
"symfony/http-kernel": "7.4.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.93",
"maglnet/composer-require-checker": "^4.17",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-symfony": "^2.0",
"rector/rector": "^2.3"
},
"autoload": {
"psr-4": {
"DarkWebDesign\\SymfonyAddonBundle\\": "src/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
}
}