mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-01-19 12:47:25 +08:00
67 lines
1.8 KiB
JSON
Executable File
67 lines
1.8 KiB
JSON
Executable File
{
|
|
"name": "laravel/passport",
|
|
"description": "Laravel Passport provides OAuth2 server support to Laravel.",
|
|
"keywords": ["laravel", "passport", "oauth"],
|
|
"license": "MIT",
|
|
"support": {
|
|
"issues": "https://github.com/laravel/passport/issues",
|
|
"source": "https://github.com/laravel/passport"
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Taylor Otwell",
|
|
"email": "taylor@laravel.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.3|^8.0",
|
|
"ext-json": "*",
|
|
"firebase/php-jwt": "^5.0",
|
|
"illuminate/auth": "^8.2",
|
|
"illuminate/console": "^8.2",
|
|
"illuminate/container": "^8.2",
|
|
"illuminate/contracts": "^8.2",
|
|
"illuminate/cookie": "^8.2",
|
|
"illuminate/database": "^8.2",
|
|
"illuminate/encryption": "^8.2",
|
|
"illuminate/http": "^8.2",
|
|
"illuminate/support": "^8.2",
|
|
"lcobucci/jwt": "^3.4|^4.0",
|
|
"league/oauth2-server": "^8.2",
|
|
"nyholm/psr7": "^1.3",
|
|
"phpseclib/phpseclib": "^2.0|^3.0",
|
|
"symfony/psr-http-message-bridge": "^2.0"
|
|
},
|
|
"require-dev": {
|
|
"mockery/mockery": "^1.0",
|
|
"orchestra/testbench": "^6.0",
|
|
"phpunit/phpunit": "^9.3"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Laravel\\Passport\\": "src/",
|
|
"Laravel\\Passport\\Database\\Factories\\": "database/factories/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Laravel\\Passport\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "10.x-dev"
|
|
},
|
|
"laravel": {
|
|
"providers": [
|
|
"Laravel\\Passport\\PassportServiceProvider"
|
|
]
|
|
}
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|