-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
73 lines (73 loc) · 1.9 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
{
"name": "bk2k/configuration-installer",
"type": "composer-plugin",
"description": "Configuration Installer",
"homepage": "https://github.com/benjaminkott/configuration-installer",
"authors": [
{
"name": "Benjamin Kott",
"email": "info@bk2k.info",
"role": "Developer",
"homepage": "http://www.bk2k.info/"
}
],
"support": {
"issues": "https://github.com/benjaminkott/configuration-installer/issues"
},
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"require": {
"php": "^7.3 || ^8.0",
"composer-plugin-api": "^1.1 || ^2.0"
},
"require-dev": {
"composer/composer": "^1.10 || ^2.0@dev",
"friendsofphp/php-cs-fixer": "^2.16 || ^3.0@dev",
"overtrue/phplint": "^2.0",
"phpunit/phpunit": "^9.2"
},
"autoload": {
"psr-4": {
"BK2K\\ConfigurationInstaller\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BK2K\\ConfigurationInstallerTest\\": "tests/"
}
},
"config": {
"bin-dir": "bin",
"optimize-autoloader": true,
"sort-packages": true,
"vendor-dir": "vendor"
},
"scripts": {
"test:php:lint": [
"phplint"
],
"test:php:unit": [
"Composer\\Config::disableProcessTimeout",
"phpunit"
],
"test:php:cover": [
"Composer\\Config::disableProcessTimeout",
"phpunit --coverage-html build/coverage-report"
],
"test": [
"@cgl",
"@test:php:lint",
"@test:php:unit"
],
"cgl:fix": [
"php-cs-fixer fix"
],
"cgl": [
"php-cs-fixer fix --dry-run"
]
},
"extra": {
"class": "BK2K\\ConfigurationInstaller\\Installer\\Plugin"
}
}