39 lines
846 B
JSON
39 lines
846 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": "^10.0|^11.0"
|
|
},
|
|
"require-dev": {
|
|
"orchestra/testbench": "^8.0",
|
|
"phpunit/phpunit": "^10.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Rodev\\DelegateAuth\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Rodev\\DelegateAuth\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"Rodev\\DelegateAuth\\DelegateAuthServiceProvider"
|
|
]
|
|
}
|
|
},
|
|
"minimum-stability": "stable"
|
|
}
|