DHL Modul v0.5 Shipping Label ok

This commit is contained in:
Kevin Adametz 2025-08-22 18:18:26 +02:00
parent 480fdc65ed
commit 8fdaa0ba1d
122 changed files with 17938 additions and 2239 deletions

View file

@ -4,15 +4,15 @@
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"require": {
"php": "^8.2",
"alban/laravel-collective-spatie-html-parser": "^1.1.9",
"barryvdh/laravel-dompdf": "^2.2",
"cocur/slugify": "^4.5",
"cviebrock/eloquent-sluggable": "^11.0",
"doctrine/dbal": "^3.6.0|^4.0",
"guzzlehttp/guzzle": "^7.4",
"intervention/image": "^3.0",
"intervention/image": "^3",
"jenssegers/date": "^4.0",
"joedixon/laravel-translation": "2.x-dev",
"laracasts/flash": "^3.2",
@ -24,6 +24,7 @@
"maatwebsite/excel": "^3.1",
"setasign/fpdf": "^1.8.6",
"setasign/fpdi": "^2.6",
"spatie/laravel-html": "^3.7",
"wearepixel/laravel-google-shopping-feed": "^4.0",
"yajra/laravel-datatables-oracle": "^11.0"
},
@ -54,7 +55,7 @@
"laravel": {
"dont-discover": []
}
},
},
"autoload": {
"files": [
"app/helpers.php"
@ -62,6 +63,8 @@
"psr-4": {
"App\\": "app/",
"Gloudemans\\Shoppingcart\\": "packages/digital-bird/shoppingcart/src",
"Alban\\LaravelCollectiveSpatieHtmlParser\\": "packages/laravel-collective-spatie-html-parser/src",
"Acme\\Dhl\\": "packages/acme-laravel-dhl/src",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
@ -78,10 +81,7 @@
"@php artisan vendor:publish --force --tag=livewire:assets --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"php artisan ide-helper:generate",
"php artisan ide-helper:meta",
"php artisan ide-helper:models"
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
@ -95,6 +95,10 @@
]
},
"repositories": [
{
"type": "path",
"url": "./packages/acme-laravel-dhl"
},
{
"type": "vcs",
"url": "https://github.com/bjhijmans/laravel-translation.git"
@ -102,4 +106,5 @@
],
"minimum-stability": "dev",
"prefer-stable": true
}