forked from elazar/flystream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 886 Bytes
/
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
{
"name": "elazar/flystream",
"description": "PHP stream wrapper for Flysystem v2",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Matthew Turland",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"league/flysystem": "^2.1",
"pimple/pimple": "^3.4",
"psr/log": "^1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"league/flysystem-memory": "^2.0",
"mockery/mockery": "^1.4",
"monolog/monolog": "^2.3",
"pestphp/pest": "^1.9"
},
"autoload": {
"psr-4": {
"Elazar\\Flystream\\": "src/"
}
},
"scripts": {
"cs": "php-cs-fixer fix",
"test": "XDEBUG_MODE=coverage pest --coverage"
},
"config": {
"sort-packages": true
}
}