Files
kulakpos_web/vendor/hardevine/shoppingcart/composer.json
eko54r b5e3a778ce
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
allow vendord
2026-03-30 14:54:57 +07:00

47 lines
1.4 KiB
JSON

{
"name": "hardevine/shoppingcart",
"description": "Laravel Shoppingcart",
"keywords": ["laravel", "shoppingcart"],
"license": "MIT",
"authors": [
{
"name": "Rob Gloudemans",
"email": "info@robgloudemans.nl"
}
],
"require": {
"illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6|^7|^8|^9|^10|^11|^12",
"illuminate/session": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6|^7|^8|^9|^10|^11|^12",
"illuminate/events": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6|^7|^8|^9|^10|^11|^12"
},
"require-dev": {
"phpunit/phpunit": "~5.0 || ~6.0 || ~7.0 || ~10.0",
"mockery/mockery": "~0.9.0",
"orchestra/testbench": "~3.1"
},
"autoload": {
"psr-4": {
"Gloudemans\\Shoppingcart\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Gloudemans\\Tests\\Shoppingcart\\": "tests/"
}
},
"suggest": {
"gloudemans/notify": "Simple flash notifications for Laravel"
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Gloudemans\\Shoppingcart\\ShoppingcartServiceProvider"
],
"aliases": {
"Cart": "Gloudemans\\Shoppingcart\\Facades\\Cart"
}
}
}
}