This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·58 lines (58 loc) · 1.66 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
{
"name": "packagefactory/fusion-debug",
"type": "neos-package",
"description": "Provides simple methods to debug stuff in Fusion",
"license": "MIT",
"authors": [
{
"name": "Wilhelm Behncke",
"email": "[email protected]",
"role": "Developer"
}
],
"scripts": {
"cleanup": [
"rm -f composer.lock",
"rm -rf Packages",
"rm -rf Build",
"rm -rf bin"
],
"lint": "phpcs --standard=PSR2 --extensions=php --exclude=Generic.Files.LineLength Classes/",
"analyse": "phpstan analyse --level 8 Classes",
"test": "phpunit -c phpunit.xml --enforce-time-limit --coverage-html Build/Reports/coverage Tests || true"
},
"require": {
"neos/fusion": "^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",
"allow-plugins": {
"neos/composer-plugin": true
}
},
"autoload": {
"psr-4": {
"PackageFactory\\Fusion\\Debug\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"PackageFactory\\Fusion\\Debug\\Tests\\": "Tests"
}
},
"extra": {
"neos": {
"package-key": "PackageFactory.Fusion.Debug"
}
}
}