forked from infinity-next/infinity-next
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
98 lines (83 loc) · 1.97 KB
/
composer.json
File metadata and controls
98 lines (83 loc) · 1.97 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "infinity-next/infinity-next",
"description": "Infinity Next is an imageboard suite utilizing the Laravel framework.",
"keywords": ["laravel", "imageboard", "8chan", "infinity"],
"license": "AGPL 3.0",
"type": "project",
"authors": [
{
"name": "Joshua Moon",
"email": "[email protected]",
"homepage": "http://jaw.sh",
"role": "Developer"
}
],
"repositories": [
{
"type": "vcs",
"url": "[email protected]:infinity-next/framework.git"
}
],
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.1.*@dev",
"predis/predis": "~1.1@dev",
"doctrine/dbal": "~2.3",
"stripe/stripe-php": "2.*",
"laravel/cashier": "~5.0",
"laravelcollective/html": "~5.0",
"illuminate/config": "~5.0",
"illuminate/hashing": "~5.0",
"illuminate/filesystem": "~5.0",
"illuminate/support": "~5.0",
"ext-gd": "*",
"intervention/imagecache": "~2.3",
"intervention/image": "~2.3",
"cviebrock/image-validator" : "2.0.*@beta",
"jenssegers/imagehash" : "0.2.*",
"james-heinrich/getid3" : "1.9.*",
"devfactory/minify" : "1.0.*",
"barryvdh/laravel-httpcache": "0.2.x@dev",
"infinity-next/braintree": "*@dev",
"infinity-next/brennan-captcha": "*@dev",
"infinity-next/eightdown": "*@dev",
"infinity-next/sleuth": "*@dev"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1",
"barryvdh/laravel-debugbar": "2.*"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.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 -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
}
}