-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.14 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.14 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
{
"name": "vdauchy/eloquent-flysystem-adaptor",
"minimum-stability": "stable",
"license": "MIT",
"require": {
"php": "^7.4|^8.0",
"illuminate/support": "^8.27",
"illuminate/database": "^8.27",
"league/flysystem": "^1.1",
"ramsey/uuid": "^4.0",
"spatie/laravel-package-tools": "^1.4"
},
"require-dev" : {
"ext-ast": "*",
"phpunit/phpunit": "^9.2",
"phan/phan": "^4.0",
"squizlabs/php_codesniffer": "^3.5",
"infection/infection": "^0.18",
"orchestra/testbench": "^6.18",
"slevomat/coding-standard": "^6.4",
"vdauchy/sql-analyzer": "^0.4"
},
"scripts": {
"unit": "vendor/bin/phpunit",
"fmt": "vendor/bin/phpcs -s",
"fmt:fix": "vendor/bin/phpcbf",
"lint": "vendor/bin/phan --color --progress-bar",
"infection": "vendor/bin/infection --threads=4"
},
"autoload": {
"psr-4": {
"VDauchy\\EloquentFlysystemAdaptor\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"VDauchy\\EloquentFlysystemAdaptor\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"VDauchy\\EloquentFlysystemAdaptor\\ServiceProvider"
]
}
}
}