This repository has been archived by the owner on Jan 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·66 lines (65 loc) · 1.86 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": "bktz/cup",
"version": "1.0.0",
"description": "The Community University Portal provides a resource for community-university project engagement and development between community groups and students, staff, and faculty of the University of Guelph.",
"keywords": ["laravel","CUP", "UoGuelph"],
"license": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License",
"authors": [
{
"name": "Benjamin Katznelson",
"homepage": "http://ca.linkedin.com/in/benikatznelson"
},
{
"name": "Justin Tempelman",
"homepage": "http://ca.linkedin.com/pub/justin-tempelman/63/a02/332"
}
],
"require": {
"laravel/framework": "4.0.*",
"twbs/bootstrap": "3.0.0",
"zizaco/confide": "1.0.*",
"zizaco/entrust": "dev-master",
"jasonlewis/basset": "dev-master",
"robclancy/presenter": "1.0.*",
"j20/php-uuid": "dev-master",
"bllim/datatables": "*",
"greggilbert/recaptcha": "dev-master"
},
"require-dev": {
"way/generators": "dev-master",
"mockery/mockery": "dev-master@dev",
"summerstreet/woodling": "0.1.*",
"barryvdh/laravel-ide-helper": "dev-master",
"leafo/lessphp": "v0.4.0",
"natxet/CssMin": "dev-master",
"lmammino/jsmin4assetic": "1.0.*"
},
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/library",
"app/models",
"app/presenters",
"app/database/migrations",
"app/database/seeds",
"app/tests/library"
]
},
"scripts": {
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-install-cmd": [
"php artisan optimize"
],
"post-update-cmd": [
"php artisan ide-helper:generate",
"php artisan optimize"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev"
}