-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 968 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
{
"description": "",
"type": "neos-package",
"name": "sitegeist/grapevine",
"require": {
"neos/neos": "^8.3"
},
"license": "GPL-3.0-or-later",
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.8",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Sitegeist\\GrapeVine\\": "Classes/"
}
},
"scripts": {
"fix:style": "phpcbf --colors --standard=PSR12 Classes",
"test:style": "phpcs --colors -n --standard=PSR12 Classes",
"test:stan": "phpstan -v analyse Classes",
"cc": "phpstan clear cache",
"fix": ["composer fix:style"],
"test": ["composer test:style" , "composer test:stan"]
},
"extra": {
"neos": {
"package-key": "Sitegeist.GrapeVine"
}
},
"config": {
"allow-plugins": {
"neos/composer-plugin": true
}
}
}