forked from digitalbiblesociety/dbp
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
executable file
·96 lines (96 loc) · 2.71 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
{
"name": "laravel/laravel",
"description": "The Laravel Framework",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"require": {
"php": "~8.2",
"awobaz/compoships": "^2.2",
"aws/aws-sdk-php": "3.321.11",
"biscolab/laravel-recaptcha": "6.1.0",
"bugsnag/bugsnag-laravel": "2.27.0",
"curl/curl": "2.5.0",
"doctrine/annotations": "2.0.2",
"doctrine/dbal": "4.1.1",
"geoip2/geoip2": "2.13.0",
"google/recaptcha": "1.3.0",
"guzzlehttp/guzzle": "7.8.1",
"intervention/image": "2.7.2",
"laravel/framework": "11.23.5",
"laravel/slack-notification-channel": "3.2.0",
"laravel/socialite": "5.11.0",
"laravel/tinker": "2.9.0",
"maennchen/zipstream-php": "3.1.0",
"mcamara/laravel-localization": "2.0.1",
"socialiteproviders/generators": "4.7.0",
"socialiteproviders/google": "4.1.0",
"spatie/array-to-xml": "3.2.2",
"spatie/eloquent-sortable": "4.2.0",
"spatie/laravel-fractal": "6.2.0",
"sunra/php-simple-html-dom-parser": "1.5.2",
"symfony/http-client": "7.1.4",
"symfony/psr-http-message-bridge": "7.0.2",
"symfony/yaml": "7.1.4",
"torann/geoip": "3.0.7",
"yosymfony/toml": "1.0.4",
"zircote/swagger-php": "4.8.3"
},
"require-dev": {
"barryvdh/laravel-debugbar": "3.13.3",
"barryvdh/laravel-ide-helper": "3.0.0",
"fakerphp/faker": "1.23.1",
"filp/whoops": "2.15.4",
"friendsofphp/php-cs-fixer": "3.41.1",
"itsgoingd/clockwork": "5.1.12",
"laravel/legacy-factories": "1.4.0",
"mockery/mockery": "1.6.7",
"phpunit/phpunit": "10.5.7",
"spatie/laravel-tail": "4.5.0",
"squizlabs/php_codesniffer": "3.8.1"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\\": "app/"
},
"files": [
"app/Helpers/Helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"scripts": {
"post-create-project-cmd": [
"@php artisan key:generate"
],
"cs": [
"php-cs-fixer fix --dry-run"
],
"cs-fix": [
"php-cs-fixer fix"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"php-http/discovery": false
}
}
}