php-vfs/composer.json

56 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2014-07-06 16:31:27 +00:00
{
"name": "adlawson/vfs",
"description": "Virtual file system",
2015-07-21 14:37:58 +00:00
"homepage": "https://github.com/adlawson/php-vfs",
"license": "MIT",
"type": "library",
2014-07-06 16:31:27 +00:00
"keywords": [
"dir",
"directory",
"fs",
"file",
"read",
"stream",
"system",
2014-09-06 13:45:46 +00:00
"virtual",
2014-07-06 16:31:27 +00:00
"wrapper",
"write"
],
"authors": [
{
"name": "Andrew Lawson",
2015-07-21 14:37:58 +00:00
"homepage": "http://adlawson.com"
2014-07-06 16:31:27 +00:00
}
],
"autoload": {
"psr-4": {
"Vfs\\": "src/"
}
},
2014-07-06 16:55:15 +00:00
"autoload-dev": {
2014-07-06 16:31:27 +00:00
"psr-4": {
2014-07-06 16:55:15 +00:00
"Vfs\\Test\\": "test/src/"
2014-07-06 16:31:27 +00:00
}
},
"require": {
2015-07-22 08:48:09 +00:00
"php": ">=5.5",
"psr/log": "^1.0"
2014-07-06 16:31:27 +00:00
},
"require-dev": {
"adlawson/timezone": "^1.0",
"fabpot/php-cs-fixer": "^1.9",
"mockery/mockery": "^0.9",
"phpunit/phpunit": "^4.7"
2015-07-21 14:37:58 +00:00
},
"scripts": {
2015-07-24 16:15:17 +00:00
"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",
2015-07-21 14:37:58 +00:00
"lint:fix": [
"vendor/bin/php-cs-fixer fix src --level=psr2",
"vendor/bin/php-cs-fixer fix test --level=psr2"
]
2014-07-06 16:31:27 +00:00
}
}