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

79 lines
1.8 KiB
JSON
Raw Normal View History

2015-07-11 03:59:39 +02:00
{
2015-08-05 16:55:56 +02:00
"name": "amphp/file",
"homepage": "https://github.com/amphp/file",
2021-12-22 22:54:20 +01:00
"description": "Non-blocking access to the filesystem based on Amp and Revolt.",
2015-08-01 03:04:58 +02:00
"support": {
2015-08-05 16:55:56 +02:00
"issues": "https://github.com/amphp/file/issues"
2015-08-01 03:04:58 +02:00
},
2015-07-11 03:59:39 +02:00
"keywords": [
2015-08-05 16:55:56 +02:00
"file",
"disk",
2015-07-11 03:59:39 +02:00
"static",
"async",
"non-blocking",
"amp",
2017-06-15 19:48:45 +02:00
"amphp",
"io",
"filesystem"
2015-07-11 03:59:39 +02:00
],
"license": "MIT",
"authors": [
{
"name": "Daniel Lowrey",
2015-07-30 16:10:53 +02:00
"email": "rdlowrey@php.net"
2016-08-30 21:05:14 +02:00
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
2017-06-21 20:11:53 +02:00
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
2015-07-11 03:59:39 +02:00
}
],
"require": {
"php": ">=8.1",
2021-12-22 22:54:20 +01:00
"amphp/amp": "^3",
"amphp/byte-stream": "^2",
2022-02-08 21:16:59 +01:00
"amphp/cache": "^2",
2023-03-02 23:27:30 +01:00
"amphp/parallel": "^2.1",
2022-02-08 21:16:59 +01:00
"amphp/sync": "^2",
2023-03-02 23:29:08 +01:00
"revolt/event-loop": "^1"
2015-07-11 03:59:39 +02:00
},
"require-dev": {
2021-12-22 22:54:20 +01:00
"amphp/phpunit-util": "^3",
2020-10-08 16:23:44 +02:00
"phpunit/phpunit": "^9",
2023-01-08 17:17:52 +01:00
"psalm/phar": "^5.4",
2023-02-18 16:49:06 +01:00
"amphp/php-cs-fixer-config": "^2"
2015-07-11 03:59:39 +02:00
},
"suggest": {
"ext-eio": "^2 || ^3",
"ext-uv": "^0.3 || ^0.2"
},
2015-07-11 03:59:39 +02:00
"autoload": {
"psr-4": {
2019-09-14 05:04:47 +02:00
"Amp\\File\\": "src"
2015-07-11 03:59:39 +02:00
},
2019-09-14 05:04:47 +02:00
"files": ["src/functions.php"]
2015-07-11 03:59:39 +02:00
},
"autoload-dev": {
"psr-4": {
2020-05-02 11:14:21 +02:00
"Amp\\File\\Test\\": "test",
2021-12-22 22:54:20 +01:00
"Amp\\Sync\\": "vendor/amphp/sync/test"
2020-05-02 11:14:21 +02:00
}
},
"config": {
"preferred-install": {
"amphp/sync": "source"
2015-07-11 03:59:39 +02:00
}
},
"scripts": {
"check": [
"@code-style",
"@test"
],
"code-style": "php-cs-fixer fix -v --diff",
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit --coverage-text"
2015-07-11 03:59:39 +02:00
}
}