-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
executable file
·78 lines (78 loc) · 2.14 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "webkings-ca/gocomposer",
"description": "Converts Drupal 8 Sites to the latest Composer Managed Template",
"type": "composer-plugin",
"keywords": ["drupal8", "update", "composer", "update core", "Update drupal8", "Update drupal8 core"],
"homepage": "https://WebKings.ca",
"time": "2019-02-01",
"license": "MIT",
"authors": [
{
"name": "Ahmad Khalil",
"email": "info@webkings.ca",
"homepage": "https://WebKings.ca",
"role": "CEO & Founder"
}
],
"support": {
"email": "info@webkings.ca",
"issues": "https://github.com/WebKings-ca/gocomposer/issues",
"wiki": "https://github.com/WebKings-ca/gocomposer",
"source": "https://github.com/WebKings-ca/gocomposer",
"docs": "https://WebKings.ca/DrupalComposerProject"
},
"require": {
"composer-plugin-api": "^1.0.0",
"symfony/yaml": "^3.4",
"webflo/drupal-finder": "^1.1",
"webkings-ca/gocomposer": "dev-master",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"alchemy/zippy": "^0.4.8",
"composer/composer": "^1.0.0",
"phpunit/phpunit": "^5.7",
"satooshi/php-coveralls": "^2.0",
"squizlabs/php_codesniffer": "^3.2",
"wikimedia/composer-merge-plugin": "^1.4"
},
"autoload": {
"psr-4": {
"WebKings\\GoComposer\\": "src",
"WebKings\\GoComposer\\Composer\\": "src/Composer"
}
},
"autoload-dev": {
"psr-4": {
"WebKings\\GoComposer\\Tests\\": "tests/phpunit/src"
}
},
"extra": {
"class": "WebKings\\GoComposer\\Composer\\Plugin",
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"minimum-stability": "stable",
"scripts": {
"cs": "phpcs -n --standard=PSR2 src tests --exclude=Generic.Files.LineLength",
"cbf": "phpcbf -n --standard=PSR2 src tests --exclude=Generic.Files.LineLength",
"unit": "phpunit",
"lint": [
"find src -name '*.php' -print0 | xargs -0 -n1 php -l",
"find tests -name '*.php' -print0 | xargs -0 -n1 php -l"
],
"test": [
"@lint",
"@unit",
"@cs"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "5.6"
}
}
}