-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
57 lines (57 loc) · 1.71 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
{
"name": "avto-dev/composer-cleanup-plugin",
"type": "composer-plugin",
"description": "A composer cleanup plugin, to remove tests and documentation to save space",
"license": "MIT",
"authors": [
{
"name": "avto-dev",
"homepage": "https://github.com/avto-dev"
},
{
"name": "Barry vd. Heuvel",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"composer-plugin-api": "^2.0"
},
"require-dev": {
"composer/composer": "^2.0",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"AvtoDev\\Composer\\Cleanup\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AvtoDev\\Composer\\Cleanup\\Tests\\": "tests/"
}
},
"extra": {
"class": "AvtoDev\\Composer\\Cleanup\\Plugin"
},
"scripts": {
"post-update-cmd": "AvtoDev\\Composer\\Cleanup\\Plugin::cleanupAllPackages",
"post-install-cmd": "AvtoDev\\Composer\\Cleanup\\Plugin::cleanupAllPackages",
"phpunit": "@php ./vendor/bin/phpunit --no-coverage --colors=always",
"phpunit-cover": "@php ./vendor/bin/phpunit --coverage-html='./coverage/html'",
"phpstan": "@php ./vendor/bin/phpstan analyze -c ./phpstan.neon.dist --no-progress --ansi",
"test": [
"@phpstan",
"@phpunit"
],
"test-cover": [
"@phpstan",
"@phpunit-cover"
]
},
"support": {
"issues": "https://github.com/avto-dev/composer-cleanup-plugin/issues",
"source": "https://github.com/avto-dev/composer-cleanup-plugin"
}
}