-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.78 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
60
61
62
63
64
65
{
"name": "sitegeist/schemeonyou",
"description": "JSON Schema integration for Neos.Flow",
"type": "neos-package",
"license": "LGPL-3.0",
"require": {
"php": "^8.2",
"neos/flow": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"mikey179/vfsstream": "^1.6",
"squizlabs/php_codesniffer": "^3.7"
},
"suggests": {
"flowpack/cors": "*"
},
"autoload": {
"psr-4": {
"Sitegeist\\SchemeOnYou\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Sitegeist\\SchemeOnYou\\Tests\\": "Tests/",
"Sitegeist\\SchemeOnYou\\Tests\\Controller\\": "Tests/Fixtures/Controller"
}
},
"scripts": {
"fix:code-style": [
"phpcbf --extensions=php --colors --standard=PSR12 ./Classes",
"phpcbf --extensions=php --colors --standard=PSR12 ./Tests"
],
"fix": [
"@install",
"@fix:code-style"
],
"lint:code-style": [
"phpcs --extensions=php --colors --standard=PSR12 --exclude=Generic.Files.LineLength ./Classes",
"phpcs --extensions=php --colors --standard=PSR12 --exclude=Generic.Files.LineLength ./Tests"
],
"lint:static-analysis": "phpstan analyse",
"lint": [
"@install",
"@lint:code-style",
"@lint:static-analysis"
],
"test:unit": "vendor/bin/phpunit Tests/Unit",
"test": [
"@install",
"@test:unit"
]
},
"config": {
"allow-plugins": {
"neos/composer-plugin": true
}
},
"extra": {
"neos": {
"package-key": "Sitegeist.SchemeOnYou"
}
}
}