-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·72 lines (70 loc) · 1.94 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
{
"name": "aicwebtech/biblesupersearch-api",
"description": "Bible SuperSearch API",
"keywords": ["Bible", "API"],
"license": "GPL-3.0-or-later",
"type": "project",
"homepage": "https://www.biblesupersearch.com",
"require": {
"php": ">=8.0.0",
"laravel/framework": "^9.0",
"guzzlehttp/guzzle": "^7.0.1",
"doctrine/dbal": "^2.5",
"laravel/slack-notification-channel": "^2.0",
"phpoffice/phpspreadsheet": "^1.9",
"tecnickcom/tcpdf": "^6.2",
"laravel/helpers": "^1.2",
"laravel/tinker" : "^2.0",
"laravel/ui" : "^3.0",
"nunomaduro/collision" : "^6.0",
"spatie/laravel-ignition": "^1.0",
"fruitcake/laravel-cors": "^2.0",
"sebastian/diff": "^4.0",
"davechild/textstatistics": "1.*"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "^9.0",
"filp/whoops": "~2.0",
"symfony/dom-crawler": "3.1.*",
"symfony/css-selector": "3.1.*",
"brianium/paratest": "^6.3"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled"
],
"-pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
],
"post-root-package-install": [
"php -r \"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"
}
}