-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
37 lines (37 loc) · 1.02 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
{
"name": "php-vfs/php-vfs",
"homepage": "http://michael-donat.github.com/php-vfs",
"keywords": ["php", "virtual", "filesystem", "testing", "unit"],
"license": "MIT",
"description": "Virtual file system implementation for use with PHP unit testing.",
"minimum-stability": "stable",
"authors": [
{
"name": "Michael Donat",
"email": "michael.donat@me.com",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"VirtualFileSystem": "src/"
}
},
"support": {
"issues": "https://github.com/michael-donat/php-vfs/issues",
"wiki": "https://github.com/michael-donat/php-vfs/wiki"
},
"archive": {
"exclude": ["docs", "vendor", "tests", ".*", "phpunit.xml", "composer.*"]
},
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"php": ">=7.0",
"sami/sami": "*",
"phpunit/phpunit": "^6.5",
"doctrine/instantiator": "~1.0.2"
},
"type": "library"
}