-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 1013 Bytes
/
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
{
"name": "mleko/wingman",
"description": "Sort composer.json based on the well-known composer.json keys",
"type": "library",
"keywords": [
"format",
"sort",
"composer.json"
],
"homepage": "https://github.com/mleko/wingman",
"license": "MIT",
"authors": [
{
"name": "Daniel Król",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"composer/composer": "^1.5",
"symfony/console": "^3.0"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^6.3"
},
"autoload": {
"psr-4": {
"Mleko\\Wingman\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mleko\\Wingman\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"post-update-cmd": [
"Mleko\\Wingman\\Composer\\EventHandler::format"
]
},
"bin": [
"wingman"
]
}