-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
47 lines (47 loc) · 1.18 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
{
"name": "hmaus/drafter-php",
"description": "PHP wrapper around drafter binary",
"license": "MIT",
"authors": [
{
"name": "Hendrik Maus",
"email": "aidentailor@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.6",
"symfony/process": "^4|^5"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"consolidation/robo": "^1.2.2",
"codeclimate/php-test-reporter": "^0.3",
"hmaus/drafter-installer": "^1.0"
},
"autoload": {
"psr-4": {
"Hmaus\\DrafterPhp\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Hmaus\\DrafterPhp\\Tests\\": "tests"
}
},
"extra": {
"drafter-installer-tag": "v4.0.2"
},
"scripts": {
"clean": "rm -rf vendor/ ext/ composer.lock",
"test": "vendor/bin/phpunit",
"quicktest": "vendor/bin/phpunit --no-coverage",
"install-drafter": "Hmaus\\Drafter\\Installer::installDrafter",
"post-install-cmd": [
"@install-drafter"
],
"post-update-cmd": [
"@install-drafter"
]
}
}