first commit

This commit is contained in:
Romulus21
2026-05-26 10:48:10 +02:00
commit f51ff75eec
6 changed files with 7750 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
{
"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"
}