1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 20:04:51 +01:00
file/composer.json

47 lines
1.0 KiB
JSON
Raw Normal View History

2015-07-11 03:59:39 +02:00
{
"name": "amphp/fs",
"homepage": "https://github.com/amphp/fs",
"description": "Non-blocking filesystem tools for amp applications",
"keywords": [
"filesystem",
"static",
"async",
"non-blocking",
"amp",
"amphp"
],
"license": "MIT",
"authors": [
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net",
"role": "Creator / Lead Developer"
}
],
"require": {
2015-07-17 16:27:38 +02:00
"php": ">=5.5",
"amphp/amp": "1.0.x-dev"
2015-07-11 03:59:39 +02:00
},
"require-dev": {
"phpunit/phpunit": "~4.4.0",
2015-07-19 18:22:16 +02:00
"fabpot/php-cs-fixer": "~1.9",
2015-07-19 18:37:10 +02:00
"satooshi/php-coveralls": "dev-master"
2015-07-11 03:59:39 +02:00
},
"autoload": {
"psr-4": {
"Amp\\Fs\\": "lib"
},
"files": ["lib/functions.php"]
},
"autoload-dev": {
"psr-4": {
"Amp\\Fs\\Test\\": "test/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.0-dev"
}
}
}