-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer-dev.json
executable file
·90 lines (90 loc) · 2.36 KB
/
composer-dev.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
87
88
89
90
{
"name": "ftrotter/lore",
"description": "Lore Commander MTG Data Analysis Project",
"keywords": [
"MTG",
"zermelo"
],
"license": "MIT",
"type": "project",
"repositories": [
{
"type": "git",
"url":"https://github.com/CareSet/Zermelo.git"
},
{
"type": "git",
"url": "https://github.com/CareSet/ZermeloBladeTabular.git"
},
{
"type": "git",
"url": "https://github.com/CareSet/ZermeloBladeCard.git"
},
{
"type": "git",
"url": "https://github.com/CareSet/ZermeloBladeTreeCard.git"
},
{
"type": "git",
"url": "https://github.com/CareSet/ZermeloBladeGraph.git"
},
{
"type": "git",
"url": "https://github.com/CareSet/DURC.git"
}
],
"require": {
"php": ">=7.2.0",
"proai/laravel-handlebars": "^1.6",
"laravel/framework": "^6.0",
"laravel/helpers": "^1.1",
"phpunit/phpunit": "^7.3",
"pusher/pusher-php-server": "^4.0",
"sunra/php-simple-html-dom-parser": "^1.5",
"superbalist/flysystem-google-storage": "^7.0",
"vlucas/phpdotenv": "^3.3",
"ftrotter/two-table-monolog-mysql": "dev-master",
"careset/zermelo_installer": "dev-develop",
"careset/durc": "dev-master"
},
"require-dev": {
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "source",
"sort-packages": true,
"optimize-autoloader": true
}
}