-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.99 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
{
"name": "drupal/phingdrushtask",
"homepage": "https://www.drupal.org/project/phingdrushtask",
"description": "Drush task for Phing.",
"keywords": ["phing", "drush", "drupal", "continuous integration", "ci"],
"type": "library",
"license": "GPL-2.0+",
"support": {
"issues": "https://www.drupal.org/project/issues/phingdrushtask",
"source": "http://cgit.drupalcode.org/phingdrushtask"
},
"authors": [
{
"name": "Pierre Buyle",
"email": "[email protected]",
"role": "Author"
},
{
"name": "Frederic Dewinne",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Pol Dellaiera",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"phing/phing": "~2.9",
"drush/drush": "6 - 9"
},
"require-dev": {
"drupal/coder": "^8.2",
"phpunit/phpunit": "^5.6",
"mockery/mockery": "^0.9",
"bovigo/assert": "^1.7",
"satooshi/php-coveralls": "^1.0",
"phpunit/php-code-coverage": "^4.0"
},
"scripts": {
"post-install-cmd": [
"vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer",
"vendor/bin/phpcs --config-set show_progress 1",
"cp scripts/pre-push.sh .git/hooks/pre-push && chmod +x .git/hooks/pre-push"
],
"post-update-cmd": [
"vendor/bin/phpcs --config-set installed_paths ../../drupal/coder/coder_sniffer",
"vendor/bin/phpcs --config-set show_progress 1",
"cp scripts/pre-push.sh .git/hooks/pre-push && chmod +x .git/hooks/pre-push"
],
"phpcs": "./vendor/bin/phpcs --standard=Drupal,DrupalPractice --ignore=vendor .",
"phpcbf": "./vendor/bin/phpcbf --standard=Drupal,DrupalPractice --ignore=vendor .",
"phpunit": "./vendor/bin/phpunit --coverage-clover build/logs/clover.xml -c tests/phpunit.xml tests",
"coveralls": "./vendor/bin/coveralls"
},
"autoload": {
"psr-4": {
"Phing\\Drush\\": "src/",
"Phing\\Drush\\Tests\\": "./tests/"
}
}
}