-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
85 lines (85 loc) · 2.56 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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"require": {
"laravel/framework": "^9.0",
"laravelcollective/html": "6.*",
"digitick/sepa-xml": "1.*",
"globalcitizen/php-iban": "4.*",
"box/spout": "^3.0",
"madnest/madzipper": "^1.3",
"yajra/laravel-datatables-oracle": "9.*",
"markrogoyski/ipv4-subnet-calculator": "3.*",
"nwidart/laravel-modules": "^7.0",
"doctrine/dbal": "^2.7",
"silber/bouncer": "v1.0.0",
"kingsquare/php-mt940": "^2.0",
"phpseclib/phpseclib": "~2.0",
"intervention/validation": "^3.0",
"kalnoy/nestedset": "^6.0",
"beyondcode/laravel-websockets": "^1.13",
"pusher/pusher-php-server": "^7.0",
"laravel/ui": "^3.0",
"symfony/mailgun-mailer": "^6.0",
"symfony/http-client": "^6.0",
"symfony/postmark-mailer": "^6.0",
"guzzlehttp/guzzle": "^7.5",
"swen100/geophp": "^1.0",
"fruitcake/laravel-cors": "^3.0",
"livewire/livewire": "^2.12",
"chrome-php/chrome": "^1.9"
},
"require-dev": {
"laravel/tinker": "^2.5",
"spatie/laravel-ignition": "^1.0",
"fakerphp/faker": "^1.9.1",
"mockery/mockery": "^1.4.2",
"nunomaduro/collision": "^6.1",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Modules\\": "modules",
"Acme\\": "app/extensions/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/",
"Database\\Migrations\\": "database/migrations/"
},
"files": [
"app/Utilities/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php",
"tests/BaseLifecycleTest.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan clear-compiled"
],
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
]
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true
}
}