-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
59 lines (59 loc) · 1.69 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "sitegeist/inspectorgadget",
"type": "neos-plugin",
"description": "Edit value objects in the inspector",
"license": "MIT",
"authors": [
{
"name": "Bernhard Schmitt",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Henrik Radandt",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Wilhelm Behncke",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"neos/neos": "^5.0 || ^7.0 || ^8.0 || dev-master"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"phpstan/phpstan": "^0.12.82",
"neos/buildessentials": "^6.3",
"mikey179/vfsstream": "^1.6",
"squizlabs/php_codesniffer": "^3.5",
"jangregor/phpstan-prophecy": "^0.8.0",
"spatie/phpunit-snapshot-assertions": "^4.2"
},
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"Sitegeist\\InspectorGadget\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Sitegeist\\InspectorGadget\\Tests\\": "Tests"
}
},
"extra": {
"neos": {
"package-key": "Sitegeist.InspectorGadget"
}
},
"scripts": {
"lint": "bin/phpcs --standard=PSR2 --extensions=php --exclude=Generic.Files.LineLength Classes/ Tests/",
"analyse": "bin/phpstan analyse --level 8 Tests/Unit Classes",
"test": "bin/phpunit -c phpunit.xml --enforce-time-limit --coverage-html Build/Reports/coverage Tests"
}
}