-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
47 lines (47 loc) · 1.33 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
{
"name": "ReMark",
"description": "The Remarkable Blogging and Publishing Platform.",
"keywords": ["remark", "blogging", "publishing", "laravel", "angularJS", "feeds"],
"license": "GPL-3.0",
"type": "project",
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.2.*",
"tymon/jwt-auth": "0.5.*",
"intervention/image": "^2.3",
"fabpot/goutte": "^3.1",
"mews/purifier": "^2.0",
"graham-campbell/markdown": "^6.1",
"league/html-to-markdown": "^4.2",
"jaybizzle/laravel-crawler-detect": "1.*",
"barryvdh/laravel-cors": "^0.8.2"
},
"autoload": {
"classmap": [
"database",
"app/Models"
],
"psr-4": {
"App\\": "app/"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall",
"php artisan optimize"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"php artisan optimize"
]
},
"config": {
"preferred-install": "dist"
}
}