forked from Atrox/haikunatorphp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 817 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
{
"name": "atrox/haikunator",
"description": "Generate Heroku-like random names to use in your php applications.",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Atrox",
"email": "mail@atrox.me"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.5",
"zfcampus/zf-console": "^1.2",
"zendframework/zend-filter": "^2.7",
"zendframework/zend-validator": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"phpunit/php-code-coverage": "^2.2",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"Atrox\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Atrox\\Test\\": "src"
}
},
"bin": [
"bin/haikunator"
],
"scripts": {
"test": "phpunit",
"coverage": "coveralls -v"
}
}