-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
55 lines (55 loc) · 1.38 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "adlawson/vfs",
"description": "Virtual file system",
"homepage": "https://github.com/adlawson/php-vfs",
"license": "MIT",
"type": "library",
"keywords": [
"dir",
"directory",
"fs",
"file",
"read",
"stream",
"system",
"virtual",
"wrapper",
"write"
],
"authors": [
{
"name": "Andrew Lawson",
"homepage": "http://adlawson.com"
}
],
"autoload": {
"psr-4": {
"Vfs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vfs\\Test\\": "test/src/"
}
},
"require": {
"php": ">=5.5",
"psr/log": "^1.0"
},
"require-dev": {
"adlawson/timezone": "^1.0",
"fabpot/php-cs-fixer": "^1.9",
"mockery/mockery": "^0.9",
"phpunit/phpunit": "^4.7"
},
"scripts": {
"test": "vendor/bin/phpunit -v --colors=always",
"test:acceptance": "vendor/bin/phpunit -v --colors=always --testsuite acceptance",
"test:functional": "vendor/bin/phpunit -v --colors=always --testsuite functional",
"test:unit": "vendor/bin/phpunit -v --colors=always --testsuite unit",
"lint:fix": [
"vendor/bin/php-cs-fixer fix src --level=psr2",
"vendor/bin/php-cs-fixer fix test --level=psr2"
]
}
}