Files
delegate-auth/composer.json
T
2026-05-26 10:53:27 +02:00

44 lines
917 B
JSON

{
"name": "castes/delegate-auth",
"description": "Description de ton package",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Rodev",
"email": "romain@delanoe.pro"
}
],
"require": {
"php": "^8.3",
"illuminate/support": "^13.0"
},
"require-dev": {
"orchestra/testbench": "^11.0",
"phpunit/phpunit": "^12.0"
},
"autoload": {
"psr-4": {
"Rodev\\DelegateAuth\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rodev\\DelegateAuth\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "8.3.0"
}
},
"extra": {
"laravel": {
"providers": [
"Rodev\\DelegateAuth\\DelegateAuthServiceProvider"
]
}
},
"minimum-stability": "stable"
}