-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.43 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
45
46
47
48
49
50
{
"name": "alies-dev/laravel-supabase-flysystem",
"description": "Laravel Flysystem adapter for Supabase Storage",
"license": "MIT",
"type": "library",
"require": {
"php": "^8.2",
"illuminate/http": "^11.35 || ^12.0",
"illuminate/support": "^11.35 || ^12.0",
"league/flysystem": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.71",
"orchestra/testbench": "^9.0 || ^10.0",
"phpunit/phpunit": "^11.5 || ^12.0",
"psalm/plugin-phpunit": "^0.19.2",
"rector/rector": "^2.0",
"vimeo/psalm": "^6.8"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"AliesDev\\LaravelSupabaseFlysystem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"AliesDev\\LaravelSupabaseFlysystem\\SupabaseStorageServiceProvider"
]
}
},
"scripts": {
"cs": "export PHP_CS_FIXER_IGNORE_ENV=1 && php-cs-fixer fix --no-interaction --ansi --verbose --allow-risky=yes",
"psalm": "vendor/bin/psalm",
"psalm:bl": "vendor/bin/psalm --set-baseline",
"rector": "vendor/bin/rector process",
"sa": "@psalm",
"sa:bl": "@psalm:bl",
"test": "vendor/bin/phpunit"
}
}