75 lines
2.2 KiB
JSON
75 lines
2.2 KiB
JSON
{
|
|
"name": "alexandergabriel/filament-oauth2",
|
|
"description": "Enable OAuth2 Authentication to FilamentPHP Panels",
|
|
"keywords": [
|
|
"AlexanderGabriel",
|
|
"laravel",
|
|
"filament-oauth2"
|
|
],
|
|
"homepage": "https://github.com/alexandergabriel/filament-oauth2",
|
|
"support": {
|
|
"issues": "https://github.com/alexandergabriel/filament-oauth2/issues",
|
|
"source": "https://github.com/alexandergabriel/filament-oauth2"
|
|
},
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Alexander Gabriel",
|
|
"email": "alexander.gabriel@digital-infinity.de",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.1",
|
|
"filament/filament": "^4.0",
|
|
"league/oauth2-client": "*",
|
|
"spatie/laravel-package-tools": "^1.15.0"
|
|
},
|
|
"require-dev": {
|
|
"laravel/pint": "^1.0",
|
|
"nunomaduro/collision": "^7.9",
|
|
"nunomaduro/larastan": "^2.0.1",
|
|
"orchestra/testbench": "^8.0",
|
|
"pestphp/pest": "^2.1",
|
|
"pestphp/pest-plugin-arch": "^2.0",
|
|
"pestphp/pest-plugin-laravel": "^2.0",
|
|
"phpstan/extension-installer": "^1.1",
|
|
"phpstan/phpstan-deprecation-rules": "^1.0",
|
|
"phpstan/phpstan-phpunit": "^1.0",
|
|
"spatie/laravel-ray": "^1.26"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"AlexanderGabriel\\FilamentOauth2\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"AlexanderGabriel\\FilamentOauth2\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
|
|
"analyse": "vendor/bin/phpstan analyse",
|
|
"test": "vendor/bin/pest",
|
|
"test-coverage": "vendor/bin/pest --coverage",
|
|
"format": "vendor/bin/pint"
|
|
},
|
|
"config": {
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true,
|
|
"phpstan/extension-installer": true
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"AlexanderGabriel\\FilamentOauth2\\FilamentOauth2ServiceProvider"
|
|
]
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|