-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
44 lines (44 loc) · 1.04 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
{
"name": "elazar/flystream",
"description": "PHP stream wrapper for Flysystem v2 and v3",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Matthew Turland",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"league/flysystem": "^2.1 || ^3.0",
"psr/container": "^2.0",
"psr/log": "^2.0 || ^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"league/flysystem-memory": "^2.0 || ^3.0",
"monolog/monolog": "^3.0",
"pestphp/pest": "^2.0"
},
"autoload": {
"psr-4": {
"Elazar\\Flystream\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Elazar\\Flystream\\Tests\\": "tests/"
}
},
"scripts": {
"cs": "php-cs-fixer fix",
"test": "XDEBUG_MODE=coverage pest --coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}