forked from owlchester/kanka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
103 lines (103 loc) · 3.04 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
{
"name": "ilestis/miscellany",
"description": "Campaign Management Tool.",
"keywords": [
"campaign",
"rpg",
"worldbuilding"
],
"license": "MIT",
"type": "project",
"require": {
"php": ">=7.1.3",
"ext-json": "*",
"ext-zip": "*",
"almasaeed2010/adminlte": "~2.4",
"backup-manager/laravel": "^1.3",
"barryvdh/laravel-cors": "^2.0",
"barryvdh/laravel-dompdf": "^0.8.2",
"binarytorch/larecipe": "^2.0",
"blueimp/jquery-file-upload": "^9.23",
"chriskonnertz/string-calc": "^1.0",
"enshrined/svg-sanitize": "^0.13.1",
"fideloper/proxy": "^4.0",
"guzzlehttp/guzzle": "^6.5",
"ilestis/kanka-dnd5e-monster": "^2.0",
"intervention/image": "^2.4",
"kalnoy/nestedset": "^5.0",
"laravel/cashier": "^10.7",
"laravel/framework": "^6.0",
"laravel/passport": "^8.0",
"laravel/socialite": "^4.0",
"laravel/tinker": "~1.0",
"laravelcollective/html": "^6.0",
"league/flysystem-aws-s3-v3": "~1.0",
"league/flysystem-cached-adapter": "~1.0",
"mcamara/laravel-localization": "^1.3",
"patreon/patreon": "^0.3.1",
"predis/predis": "^1.1",
"richan-fongdasen/eloquent-blameable": "^1.4",
"sentry/sentry-laravel": "^1.6",
"sergej-kurakin/diceroller": "^2.0",
"sofa/eloquence": "^6.0",
"spatie/laravel-feed": "^2.6",
"spatie/laravel-newsletter": "^4.8",
"stevebauman/purify": "^3.0",
"tcg/voyager": "1.4.*",
"vsch/laravel-translation-manager": "^6.0"
},
"require-dev": {
"ext-mysqli": "*",
"barryvdh/laravel-debugbar": "^3.1",
"filp/whoops": "~2.0",
"fzaninotto/faker": "~1.4",
"laravel/homestead": "^7.0",
"martinlindhe/laravel-vue-i18n-generator": "^0.1.42",
"mockery/mockery": "~1.0",
"phpunit/phpunit": "^7.0",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"scripts": {
"phpcs": "phpcs --standard=phpcs.xml",
"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"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"repositories": {
"hooks": {
"type": "composer",
"url": "https://larapack.io"
}
}
}