forked from ProbablyRational/random-name-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·30 lines (30 loc) · 901 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": "probablyrational/random-name-generator",
"description": "A library to create interesting, sometimes entertaining, random names. (Based on nubs/random-name-generator)",
"keywords": ["random", "generator", "video game", "alliteration", "sketchy"],
"authors": [
{
"name": "Zachary Claret-Scott",
"email": "[email protected]",
"role": "Contributer"
}
],
"license": "MIT",
"require": {
"php": "~5.6 || ~7.0 || ~8.0"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"satooshi/php-coveralls": "~1.0",
"cinam/randomizer": ">=1.1.1,<2.0",
"squizlabs/php_codesniffer": "~2.3"
},
"autoload": {
"psr-4": {
"ProbablyRational\\RandomNameGenerator\\": "src"
}
},
"scripts": {
"test": "./build.php"
}
}