-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1.46 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
{
"description": "EEL Color helper to transform hex colors",
"type": "neos-package",
"name": "packagefactory/colorhelper",
"license": "GPL-3.0-or-later",
"require": {
"neos/eel": "^5.3 || ^6.0 || ^7.0 || ^8.0 || dev-master",
"neos/fusion": "^4.3 || ^5.0 || ^7.0 || ^8.0 || dev-master"
},
"require-dev": {
"phpstan/phpstan": "*"
},
"autoload": {
"psr-4": {
"PackageFactory\\ColorHelper\\": "Classes/"
}
},
"extra": {
"neos": {
"package-key": "PackageFactory.ColorHelper"
}
},
"scripts": {
"test:prepare": [
"cd Build/Travis && composer install",
"rsync -av --exclude='Build' --exclude='.git' --delete ./ ./Build/Travis/Packages/Application/PackageFactory.ColorHelper",
"rm -f Build/Travis/Configuration/PackageStates.php",
"rm -f Build/Travis/Configuration/Routes.yaml",
"cp Build/Travis/Routes.yaml Build/Travis/Configuration/"
],
"test:phpstan": [
"composer test:prepare",
"Build/Travis/bin/phpstan analyse --level 8 Build/Travis/Packages/Application/PackageFactory.ColorHelper/Classes"
],
"test:unit": [
"composer test:prepare",
"Build/Travis/bin/phpunit --verbose -c Build/Travis/unit-tests.xml"
],
"test": [
"composer test:phpstan",
"composer test:unit"
]
}
}