-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
37 lines (37 loc) · 1.04 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
{
"name": "integratedexperts/robo-git-artefact",
"description": "Robo task to push git artefact to remote repository",
"type": "robo-tasks",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Alex Skrypnyk",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"consolidation/robo": "~1"
},
"require-dev": {
"squizlabs/php_codesniffer": "2.*",
"escapestudios/symfony2-coding-standard": "~2.0",
"phpunit/phpunit": "^6.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0"
},
"scripts": {
"lint": "./vendor/bin/phpcs",
"test": "./vendor/bin/phpunit --colors=always --fail-on-warning",
"clean": "vagrant -f destroy &>/dev/null || $(which true); rm -Rf $(pwd)/.vagrant; rm -Rf $(pwd)/.beetbox; rm -Rf $(pwd)/Vagrantfile; rm -Rf $(pwd)/vendor; rm -Rf $(pwd)/screenshots;"
},
"autoload": {
"psr-4": {
"IntegratedExperts\\Robo\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"IntegratedExperts\\Robo\\Tests\\": "tests"
}
}
}