forked from TechnicPack/TechnicSolder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 2.43 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
{
"name": "solder/solder",
"type": "application",
"description": "Technic Solder API using Laravel Framework",
"keywords": ["technic", "solder", "api"],
"homepage": "https://github.com/TechnicPack/TechnicSolder",
"license": "MIT",
"authors": [
{
"name": "Ryan Cohen",
"email": "[email protected]",
"homepage": "http://www.sctgaming.com",
"role": "Developer"
},
{
"name": "Dylan Page",
"email": "[email protected]",
"homepage": "http://www.pagefortress.com",
"role": "Developer"
},
{
"name": "Pedro Cunha",
"email": "[email protected]",
"homepage": "https://pyker.net/",
"role": "Developer"
}
],
"require": {
"laravel/framework": "4.2.*",
"intervention/image": "2.5.*",
"doctrine/dbal": "~2.3",
"knplabs/github-api": "1.7.*"
},
"require-dev": {
"barryvdh/laravel-debugbar": "~1.8@dev",
"mockery/mockery": "master@dev",
"phpunit/phpunit": "~5.7"
},
"autoload": {
"classmap": [
"app/commands",
"app/controllers",
"app/models",
"app/database/migrations",
"app/database/seeds",
"app/tests/TestCase.php"
]
},
"scripts": {
"pre-install-cmd": [
"php -r \"shell_exec((strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') ? 'mkdir app\\config && copy app\\config-sample app\\config' : 'cp -r app/config-sample app/config');\"",
"php -r \"copy('app/database-sample/production.sqlite', 'app/database/production.sqlite');\"",
"php -r \"chmod('app/storage', 0775);\"",
"php -r \"chmod('public/resources', 0775);\""
],
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize",
"php artisan key:generate"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"tests": [
"php artisan migrate:refresh --force",
"php artisan db:seed --class=\"TestSeeder\" --force",
"vendor/bin/phpunit --verbose"
]
},
"config": {
"preferred-install": "dist",
"platform": {
"php": "7.0"
}
},
"minimum-stability": "dev"
}