-
Notifications
You must be signed in to change notification settings - Fork 52
/
composer.json
55 lines (55 loc) · 1.52 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
{
"name": "oomphinc/composer-installers-extender",
"description": "Extend the composer/installers plugin to accept any arbitrary package type.",
"homepage": "http://www.oomphinc.com/",
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Stephen Beemsterboer",
"email": "[email protected]",
"homepage": "https://github.com/balbuf"
},
{
"name": "Nathan Dentzau",
"email": "[email protected]",
"homepage": "http://oomph.is/ndentzau"
}
],
"support": {
"issues": "https://github.com/oomphinc/composer-installers-extender/issues"
},
"require": {
"php": ">=7.1",
"composer-plugin-api": "^1.1 || ^2.0",
"composer/installers": "^1.0 || ^2.0"
},
"require-dev": {
"composer/composer": "^2.0",
"phpunit/phpunit": "^7.2",
"squizlabs/php_codesniffer": "^3.3"
},
"autoload":{
"psr-4": {
"OomphInc\\ComposerInstallersExtender\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OomphInc\\ComposerInstallerExtender\\Tests\\": "tests/src/"
}
},
"scripts": {
"fix": "vendor/bin/phpcbf",
"lint": "vendor/bin/phpcs",
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"class": "OomphInc\\ComposerInstallersExtender\\Plugin"
},
"minimum-stability": "dev",
"prefer-stable": true
}