-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (65 loc) · 1.94 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "jcummins/MilesRaceCenter",
"type": "website",
"description": "A Laravel based event management, registration, and donation system for non-profits written in PHP",
"keywords": ["race","registration","donation","non-profit","laravel","php"],
"homepage": "http://github.com/jcummins/MilesRaceCenter",
"license": "MIT",
"authors": [
{
"name": "Jim Cummins",
"email": "jim@jamespcummins.com",
"homepage": "http://jamespcummins.com",
"role": "Developer"
}
],
"require": {
"laravel/framework": "4.1.*",
"way/generators": "dev-master",
"mockery/mockery": "dev-master@dev",
"omnipay/stripe": "~2.0",
"omnipay/paypal": "~2.0",
"phpunit/phpunit": "3.7.*",
"rydurham/sentinel": "dev-master"
},
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php",
"app/validators"
],
"files": [
"app/support/helpers.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan optimize",
"chmod -R 777 app/storage",
"chmod -R 777 public",
"php artisan migrate --package=rydurham/sentinel",
"php artisan migrate",
"php artisan db:seed --class='SentinelDatabaseSeeder'",
"php artisan db:seed"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"extra": {
"heroku": {
"framework": "silex",
"document-root": "public",
"index-document": "index.php"
}
},
"minimum-stability": "dev"
}