forked from mybuilder/phpunit-accelerator
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
29 lines (29 loc) · 823 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
{
"name": "padraic/phpunit-accelerator",
"description": "PHPUnit Accelerator: Speeds up PHPUnit by freeing memory after test runs",
"keywords": ["phpunit", "accelerator", "memory", "property", "free", "fast"],
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Keyvan Akbary",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Padraic Brady",
"email": "[email protected]",
"role": "Contributor"
}
],
"require": {
"php": ">=5.3.3",
"phpunit/phpunit": ">=3.7"
},
"replace": {
"mybuilder/phpunit-accelerator": "1.0.x"
},
"autoload": {
"psr-4": { "MyBuilder\\PhpunitAccelerator\\": "src" }
}
}