-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.39 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.39 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"description": "",
"type": "neos-package",
"name": "packagefactory/nodetypeobjects",
"license": "LGPL-3.0",
"require": {
"neos/neos": "~9.0",
"php": ">=8.2"
},
"autoload": {
"psr-4": {
"PackageFactory\\NodeTypeObjects\\": "Classes/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7",
"neos/contentgraph-doctrinedbaladapter": "~9.0 || dev-master"
},
"scripts": {
"fix:code-style": [
"phpcbf --extensions=php --colors --standard=PSR12 ./Classes"
],
"fix": [
"@install",
"@fix:code-style"
],
"lint:code-style": [
"phpcs --extensions=php --colors --standard=PSR12 --exclude=Generic.Files.LineLength ./Classes"
],
"lint:static-analysis": "phpstan analyse",
"lint": [
"@install",
"@lint:code-style",
"@lint:static-analysis"
],
"test:unit": "vendor/bin/phpunit Tests/Unit --display-phpunit-deprecations",
"test": [
"@test:unit"
]
},
"extra": {
"neos": {
"package-key": "PackageFactory.NodeTypeObjects"
}
},
"config": {
"allow-plugins": {
"neos/composer-plugin": true
}
}
}