-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·42 lines (42 loc) · 1.03 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
{
"name": "nezaniel/componentview",
"type": "neos-package",
"description": "A view based on self-rendering presentational components for Neos CMS",
"require": {
"neos/neos": "9.0.0-beta15",
"neos/neos-ui": "9.0.0-beta15"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.8",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Nezaniel\\ComponentView\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Nezaniel\\ComponentView\\Tests\\": "Tests"
}
},
"scripts": {
"lint": "phpcs --colors -n --standard=PSR12 Classes",
"analyse": "phpstan analyse",
"test:unit": [
"phpunit --colors Tests/Unit"
],
"test": ["@test:unit"]
},
"extra": {
"neos": {
"package-key": "Nezaniel.ComponentView"
}
},
"config": {
"allow-plugins": {
"neos/composer-plugin": true
}
}
}