-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 762 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 762 Bytes
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
{
"name": "badcow/phrase-generator",
"description": "Generate an English adjective-noun pair as a phrase (e.g. SubmissiveMonkey).",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Samuel Williams",
"email": "sam@badcow.co"
}
],
"require": {
"php": "^7.3 || ^8.0"
},
"autoload": {
"psr-4": {
"Badcow\\PhraseGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Badcow\\PhraseGenerator\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^0.12",
"php-coveralls/php-coveralls": "~2.1",
"friendsofphp/php-cs-fixer": "^2.16"
}
}