This repository has been archived by the owner on Oct 7, 2020. It is now read-only.
forked from sporchia/alttp_vt_randomizer
-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
108 lines (108 loc) · 2.88 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "sporchia/alttp_php_randmizer",
"description": "PHP based Randomizer for ALttP",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "veetorp",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.1.0",
"ext-bcmath": "*",
"doctrine/dbal": "^2.5",
"ezyang/htmlpurifier": "^4.9",
"graham-campbell/markdown": "^9.0",
"hashids/hashids": "^2.0",
"laravel/dusk": "^2.0",
"laravel/framework": "5.5.*",
"laravel/tinker": "^1.0",
"league/flysystem-rackspace": "^1.0",
"sentry/sentry": "^1.8",
"sentry/sentry-laravel": "^0.8.0",
"z3/enemizer": "6.0.22",
"z3/entrancerandomizer": "0.6.1"
},
"require-dev": {
"sami/sami": "*",
"filp/whoops": "~2.0",
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~6.0",
"symfony/css-selector": "3.1.*",
"symfony/dom-crawler": "3.1.*"
},
"repositories": [
{
"type": "package",
"package": {
"name": "z3/enemizer",
"version": "6.0.22",
"source": {
"url": "https://github.com/Zarby89/Enemizer",
"type": "git",
"reference": "tags/6.0.22"
}
}
},
{
"type": "package",
"package": {
"name": "z3/entrancerandomizer",
"version": "0.6.1",
"source": {
"url": "https://github.com/AmazingAmpharos/ALttPEntranceRandomizer",
"type": "git",
"reference": "tags/0.6.1"
}
}
}
],
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"ALttP\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Tests\\": "tests/"
}
},
"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"
],
"documentation": [
"./vendor/sami/sami/sami.php update sami.php"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": [
"laravel/dusk"
]
}
}
}