-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
40 lines (40 loc) · 955 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": "rb/polygen-php",
"description": "A PHP implementation of Polygen - A random sentence generator.",
"authors": [
{
"name": "Riccardo Bastianini",
"email": "RBastianini@users.noreply.github.com"
}
],
"license": "LGPL-3.0-only",
"require": {
"guzzlehttp/streams": "^3",
"php": "^5.6 || ^7.0",
"drupol/phpermutations": "^1",
"savvot/random": "^0.3",
"webmozart/assert": "^1"
},
"autoload": {
"psr-4": {"Polygen\\": "src/"}
},
"bin": [
"polygen.php"
],
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Tests\\Polygen\\Unit\\": "tests/Unit/",
"Tests\\Polygen\\Integration\\": "tests/Integration/"
}
},
"require-dev": {
"phpunit/phpunit": "^5.7.5",
"mockery/mockery": "^1"
},
"scripts": {
"run-tests": "phpunit",
"run-unit-tests": "phpunit --testsuite Unit",
"run-integration-tests": "phpunit --testsuite Integration"
}
}