123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- {
- "name": "overtrue/socialite",
- "description": "A collection of OAuth 2 packages.",
- "keywords": [
- "oauth",
- "social",
- "login",
- "weibo",
- "wechat",
- "qq",
- "feishu",
- "qcloud"
- ],
- "autoload": {
- "files": [
- "src/Contracts/FactoryInterface.php",
- "src/Contracts/UserInterface.php",
- "src/Contracts/ProviderInterface.php"
- ],
- "psr-4": {
- "Overtrue\\Socialite\\": "src/"
- }
- },
- "require": {
- "php": ">=8.0.2",
- "ext-json": "*",
- "ext-openssl": "*",
- "guzzlehttp/guzzle": "^7.0",
- "symfony/psr-http-message-bridge": "^2.1|^6.0"
- },
- "require-dev": {
- "mockery/mockery": "^1.3",
- "phpunit/phpunit": "^9.0",
- "jetbrains/phpstorm-attributes": "^1.0",
- "phpstan/phpstan": "^1.7",
- "laravel/pint": "^1.2"
- },
- "license": "MIT",
- "authors": [
- {
- "name": "overtrue",
- "email": "anzhengchao@gmail.com"
- }
- ],
- "scripts": {
- "check-style": "@php vendor/bin/pint --test",
- "fix-style": "@php vendor/bin/pint",
- "test": "@php vendor/bin/phpunit --colors=always",
- "phpstan": "@php vendor/bin/phpstan analyse src"
- }
- }
|