forked from nubs/random-name-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 840 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
{
"name": "ambersive/random-name-generator",
"description": "A library to create interesting, sometimes entertaining, random names.",
"keywords": ["random", "generator", "video game", "alliteration"],
"authors": [
{
"name": "Spencer Rinehart",
"email": "[email protected]",
"role": "Developer"
}
],
"license": "MIT",
"require": {
"php": "~5.6 || ~7.0 || ~8.0"
},
"require-dev": {
"phpunit/phpunit": "^5.0 || ^6.5 || ^7.0 || ^9.0",
"php-coveralls/php-coveralls": "~2.4",
"cinam/randomizer": ">=1.1.1,<2.0",
"squizlabs/php_codesniffer": "~2.3"
},
"autoload": {
"psr-4": {
"Nubs\\RandomNameGenerator\\": "src"
}
},
"scripts": {
"test": "./build.php"
}
}