equal
deleted
inserted
replaced
|
1 { |
|
2 "name": "laravel/laravel", |
|
3 "description": "The Laravel Framework.", |
|
4 "keywords": ["framework", "laravel"], |
|
5 "license": "MIT", |
|
6 "type": "project", |
|
7 "require": { |
|
8 "laravel/framework": "5.1.*", |
|
9 "xavrsl/cas": "v1.2.0" |
|
10 }, |
|
11 "require-dev": { |
|
12 "phpunit/phpunit": "~4.0", |
|
13 "phpspec/phpspec": "~2.1" |
|
14 }, |
|
15 "autoload": { |
|
16 "classmap": [ |
|
17 "database" |
|
18 ], |
|
19 "psr-4": { |
|
20 "TestCAS\\": "app/" |
|
21 } |
|
22 }, |
|
23 "autoload-dev": { |
|
24 "classmap": [ |
|
25 "tests/TestCase.php" |
|
26 ] |
|
27 }, |
|
28 "scripts": { |
|
29 "post-install-cmd": [ |
|
30 "php artisan clear-compiled", |
|
31 "php artisan optimize" |
|
32 ], |
|
33 "post-update-cmd": [ |
|
34 "php artisan clear-compiled", |
|
35 "php artisan optimize" |
|
36 ], |
|
37 "post-create-project-cmd": [ |
|
38 "php -r \"copy('.env.example', '.env');\"", |
|
39 "php artisan key:generate" |
|
40 ] |
|
41 }, |
|
42 "config": { |
|
43 "preferred-install": "dist" |
|
44 }, |
|
45 "minimum-stability": "dev", |
|
46 "prefer-stable": true |
|
47 } |