-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.22 KB
/
Copy pathcomposer.json
File metadata and controls
52 lines (52 loc) · 1.22 KB
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
45
46
47
48
49
50
51
52
{
"name": "elazar/flystream",
"version": "1.4.0",
"description": "PHP stream wrapper for Flysystem v2 and v3",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Matthew Turland",
"email": "me@matthewturland.com"
}
],
"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",
"nunomaduro/collision": "^6 || ^7 || ^8",
"pestphp/pest": "^1 || ^2 || ^3"
},
"autoload": {
"psr-4": {
"Elazar\\Flystream\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Elazar\\Flystream\\Tests\\": "tests/"
}
},
"scripts": {
"cs": [
"@composer install",
"php-cs-fixer fix"
],
"test": [
"@composer install",
"pest --colors=always"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}