-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
63 lines (62 loc) · 1.77 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "geo-sot/filament-env-editor",
"description": "Access .env file though Filament admin panel",
"keywords": [
"geo-sot",
"laravel",
"laravel-env-editor",
"EnvEditor",
"filament-env-editor"
],
"homepage": "https://github.com/GeoSot/filament-env-editor",
"support": {
"issues": "https://github.com/GeoSot/filament-env-editor/issues",
"source": "https://github.com/GeoSot/filament-env-editor"
},
"license": "MIT",
"authors": [
{
"name": "Geo Sot",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"filament/filament": "^3.0",
"illuminate/contracts": "^10.0|^11.0",
"spatie/laravel-package-tools": "^1.15.0",
"geo-sot/laravel-env-editor":"^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"larastan/larastan": "^2",
"orchestra/testbench": ">=9",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0"
},
"autoload": {
"psr-4": {
"GeoSot\\FilamentEnvEditor\\": "src/"
}
},
"scripts": {
"phpstan": "php --version && php vendor/bin/phpstan --version && php -d memory_limit=1G vendor/bin/phpstan analyse -c ruleset-phpstan.neon -vvv",
"cs": "./vendor/bin/php-cs-fixer fix -vvv --show-progress=dots --config=ruleset-php_cs.php",
"all": [
"@phpstan",
"@cs"
]
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"GeoSot\\FilamentEnvEditor\\ServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}