-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
60 lines (60 loc) · 1.56 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
{
"name": "grasmash/composerize-drupal",
"description": "Convert a non-Composer managed Drupal application into a Composer-managed application.",
"type": "composer-plugin",
"require": {
"php": ">=5.6",
"composer-plugin-api": "^2.0",
"composer/semver": "^3",
"symfony/finder": "^3.4",
"symfony/yaml": "^3.4| ^4.0 | ^5.0",
"webflo/drupal-finder": "^1.1",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"alchemy/zippy": "^0.4.8",
"composer/composer": "^2.0",
"phpunit/phpunit": "^5.7",
"satooshi/php-coveralls": "^2.0",
"squizlabs/php_codesniffer": "^3.2"
},
"autoload": {
"psr-4": {
"Grasmash\\ComposerConverter\\": "src",
"Grasmash\\ComposerConverter\\Composer\\": "src/Composer"
}
},
"autoload-dev": {
"psr-4": {
"Grasmash\\ComposerConverter\\Tests\\": "tests/phpunit/src"
}
},
"extra": {
"class": "Grasmash\\ComposerConverter\\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"
}
}
}