forked from mcaskill/composer-plugin-exclude-files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.37 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
{
"type": "composer-plugin",
"name": "mcaskill/composer-exclude-files",
"description": "Exclude files from autoload_files.php",
"license": "MIT",
"authors": [
{
"name": "Chauncey McAskill",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2.5 || ^8.0",
"composer-plugin-api": "^2.3"
},
"require-dev": {
"composer/composer": "^2.3",
"phpstan/phpstan": "^1.7",
"symfony/phpunit-bridge": "^6.0"
},
"autoload": {
"psr-4": {
"McAskill\\Composer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\McAskill\\Composer\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "4.x-dev"
},
"class": "McAskill\\Composer\\ExcludeFilePlugin"
},
"config": {
"platform": {
"php": "7.2.5"
},
"platform-check": false
},
"scripts": {
"lint": [
"@lint:phpstan"
],
"test": [
"@test:phpunit"
],
"lint:phpstan": "@php vendor/bin/phpstan analyse",
"test:phpunit": "@php simple-phpunit"
},
"scripts-descriptions": {
"lint:phpstan": "Run static code analysis with PHPStan",
"test:phpunit": "Run all tests with PHPUnit"
}
}