-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1022 Bytes
/
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
{
"name": "friendsofsulu/maker-bundle",
"description": "Package to generate configuration and boilerplate code in Sulu",
"type": "library",
"keywords": [
"maker-bundle",
"sulu"
],
"require": {
"php": ">=8.2",
"symfony/maker-bundle": "^v1.60.0",
"webmozart/assert": "^1.11.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.20",
"phpstan/phpstan": "^1.11.7",
"phpstan/phpstan-webmozart-assert": "^1.2.7",
"php-cs-fixer/shim": "^3.14"
},
"license": "MIT",
"autoload": {
"psr-4": {
"FriendsOfSulu\\MakerBundle\\": "src/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"analyse": [
"vendor/bin/phpstan"
],
"fix": [
"vendor/bin/php-cs-fixer fix src"
]
},
"authors": [
{
"name": "mamazu",
"email": "14860264+mamazu@users.noreply.github.com"
}
]
}