-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
45 lines (45 loc) · 1.27 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
{
"description": "Responsive-images for Neos",
"type": "neos-package",
"name": "sitegeist/kaleidoscope",
"license": "GPL-3.0-or-later",
"require": {
"neos/neos": "^8.3 || ^9.0 || dev-master",
"neos/fusion-afx": "^8.3 || ^9.0 || dev-master",
"neos/media": "*",
"neos/imagine": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.8",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Sitegeist\\Kaleidoscope\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Sitegeist\\Kaleidoscope\\Tests\\": "Tests/"
}
},
"extra": {
"neos": {
"package-key": "Sitegeist.Kaleidoscope"
}
},
"scripts": {
"fix:style": "phpcbf --colors --standard=PSR12 Classes",
"test:style": "phpcs --colors -n --standard=PSR12 Classes",
"test:stan": "phpstan analyse Classes",
"test:unit": "phpunit Tests/Unit",
"cc": "phpstan clear cache",
"test": ["composer install", "composer test:style" , "composer test:stan", "composer test:unit"]
},
"config": {
"allow-plugins": {
"neos/composer-plugin": true
}
}
}