-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
86 lines (86 loc) · 2.17 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "teenquotes/website",
"description": "The Teen Quotes website.",
"keywords": ["quotes", "teen", "teenagers", "TeenQuotes"],
"license": "Creative Commons BY-NC-SA",
"homepage": "http://teen-quotes.com",
"authors": [
{
"name": "Antoine Augusti",
"email": "[email protected]",
"homepage": "http://www.antoine-augusti.fr",
"role":"Developer"
}
],
"require": {
"laravel/framework": "4.2.*",
"graham-campbell/htmlmin": "~2.0",
"nesbot/Carbon": "*",
"tijsverkoyen/css-to-inline-styles": "1.2.*",
"indatus/dispatcher": "1.*",
"lucadegasperi/oauth2-server-laravel": "1.0.x",
"laracasts/utilities": "1.0.1",
"guzzlehttp/guzzle": "~4.0",
"jenssegers/agent": "~2.0",
"buonzz/laravel-4-freegeoip": "dev-master",
"thomaswelton/laravel-gravatar": "0.1.x",
"antoineaugusti/laravel-sentiment-analysis": "~1.0",
"philf/setting": "1.0.1",
"antoineaugusti/laravel-easyrec": "~0.1",
"laracasts/presenter": "0.1.*",
"philo/laravel-translate": "~1.0",
"laracasts/testdummy": "~1.0",
"stojg/crop": "~1.0",
"laracasts/validation": "~1.0",
"mailchimp/mailchimp": "~2.0",
"vlucas/phpdotenv": "~1.0",
"healey/robots": "~1.0",
"ivkos/pushbullet": "~2.0",
"bugsnag/bugsnag-laravel": "1.*"
},
"require-dev": {
"way/generators": "2.*",
"fzaninotto/faker": "~1.0",
"codeception/codeception": "2.0.13",
"mockery/mockery": "0.9.*",
"captbaritone/mailcatcher-codeception-module": "1.2"
},
"autoload": {
"classmap": [
"app/commands",
"app/database/migrations",
"app/database/seeds",
"tests/TestCase.php"
],
"psr-0": {
"TeenQuotes": "app"
},
"files": [
"app/helpers.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
},
"repositories":
[
{
"type": "vcs",
"url": "https://github.com/AntoineAugusti/laravel-4-freegeoip"
}
],
"minimum-stability": "stable"
}