Created
December 3, 2014 07:11
-
-
Save localdisk/198d372748d269d2bf76 to your computer and use it in GitHub Desktop.
laravel/socialite 設定例
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "laravel/laravel", | |
| "description": "The Laravel Framework.", | |
| "keywords": ["framework", "laravel"], | |
| "license": "MIT", | |
| "type": "project", | |
| "require": { | |
| "laravel/framework": "~5.0", | |
| "laravel/socialite": "~2.0" | |
| }, | |
| "require-dev": { | |
| "phpunit/phpunit": "~4.0", | |
| "barryvdh/laravel-ide-helper": "~1.0", | |
| "doctrine/dbal": "~2.3" | |
| }, | |
| "autoload": { | |
| "classmap": [ | |
| "database", | |
| "tests/TestCase.php" | |
| ], | |
| "psr-4": { | |
| "App\\": "app/" | |
| } | |
| }, | |
| "scripts": { | |
| "post-install-cmd": [ | |
| "php artisan clear-compiled", | |
| "php artisan route:scan", | |
| "php artisan event:scan", | |
| "php artisan optimize" | |
| ], | |
| "post-update-cmd": [ | |
| "php artisan clear-compiled", | |
| "php artisan ide-helper:generate", | |
| "php artisan optimize" | |
| ], | |
| "post-create-project-cmd": [ | |
| "php artisan key:generate" | |
| ] | |
| }, | |
| "config": { | |
| "preferred-install": "dist" | |
| }, | |
| "minimum-stability": "dev" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment