-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 826 Bytes
/
Copy pathcomposer.json
File metadata and controls
29 lines (29 loc) · 826 Bytes
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
{
"name": "eiriksm/drupal-package-cleaner",
"description": "Composer plugin to improve composer performance for Drupal projects",
"type": "composer-plugin",
"license": "GPL-2.0-or-later",
"authors": [],
"require": {
"composer-plugin-api": "^1.1"
},
"scripts": {
"test": "@composer lint && phpstan analyse src tests --level=max",
"lint": "phpcs -p -n"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^0.11.19",
"phpunit/phpunit": "^6",
"composer/composer": "^1.9",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload": {
"psr-4": {
"eiriksm\\DrupalPackageCleaner\\": "src/"
}
},
"extra": {
"class": "eiriksm\\DrupalPackageCleaner\\Plugin"
}
}