-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) · 2.79 KB
/
composer.json
File metadata and controls
91 lines (91 loc) · 2.79 KB
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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"require": {
"laravel/framework": "^11.0",
"spatie/laravel-html": "^3.7",
"digitick/sepa-xml": "1.*",
"globalcitizen/php-iban": "4.*",
"box/spout": "^3.0",
"madnest/madzipper": "^1.3",
"yajra/laravel-datatables-oracle": "^11.0",
"markrogoyski/ipv4-subnet-calculator": "4.*",
"nwidart/laravel-modules": "~11.0.0",
"silber/bouncer": "v1.0.2",
"kingsquare/php-mt940": "^2.0",
"phpseclib/phpseclib": "~3.0",
"intervention/validation": "^4.1",
"kalnoy/nestedset": "^6.0",
"laravel/reverb": "^1.2.0",
"laravel/ui": "^4.0",
"symfony/mailgun-mailer": "^7.0",
"symfony/http-client": "^7.0",
"symfony/postmark-mailer": "^7.0",
"guzzlehttp/guzzle": "^7.5",
"swen100/geophp": "^1.0",
"livewire/livewire": "^3.6",
"chrome-php/chrome": "^1.9",
"horstoeko/zugferd": "^1.0",
"league/omnipay": "^3.2",
"dranes/omnipay-ippay": "^2.0",
"goetas-webservices/xsd2php": "^0.4.14",
"goetas-webservices/xsd2php-runtime": "^0.2.17",
"mhmiton/laravel-modules-livewire": "^5.1"
},
"require-dev": {
"laravel/tinker": "^2.5",
"spatie/laravel-ignition": "^2.0",
"fakerphp/faker": "^1.9.1",
"mockery/mockery": "^1.4.2",
"nunomaduro/collision": "^8.1",
"phpunit/phpunit": "^11.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Modules\\": "modules",
"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,
"allow-plugins": {
"wikimedia/composer-merge-plugin": true,
"php-http/discovery": true
}
}
}