-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
41 lines (41 loc) · 1.18 KB
/
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
41
{
"name": "jwage/phpchunkit",
"type": "library",
"description": "PHPUnit Test Runner",
"keywords": ["tests", "phpunit"],
"homepage": "http://github.com/jwage/phpchunkit",
"license": "MIT",
"authors": [
{"name": "Jonathan H. Wage", "email": "[email protected]"},
{"name": "Kris Wallsmith", "email": "[email protected]"}
],
"autoload": {
"psr-4": {
"PHPChunkit\\": "src/",
"PHPChunkit\\Test\\": "tests/"
}
},
"require": {
"php": ">=7.0.0",
"phpunit/phpunit": ">=5.0",
"phpunit/phpunit-mock-objects": "^3.1|>=4.0",
"sebastian/comparator": ">=1.2.3",
"symfony/console": "^2.7|^3.0",
"symfony/process": "^2.7|^3.0",
"symfony/stopwatch": "^2.7|^3.0",
"symfony/finder": "^2.7|^3.0",
"symfony/event-dispatcher": "^2.7|^3.0",
"phpunit/php-token-stream": ">=1.4",
"pimple/pimple": "^3.0",
"doctrine/inflector": "^1.1",
"twig/twig": "^1.27"
},
"require-dev": {
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"kherge/box": "^2.7"
},
"bin": [
"bin/phpchunkit"
]
}