composer.json 714 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "longyi/core",
  3. "description": "Longyi Core Package for Bagisto - Flexible Variant Product Type with Option-Based Variants",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Longyi Team",
  9. "email": "dev@longyi.com"
  10. }
  11. ],
  12. "require": {
  13. "php": "^8.1|^8.2",
  14. "illuminate/support": "^10.0|^11.0"
  15. },
  16. "autoload": {
  17. "psr-4": {
  18. "Longyi\\Core\\": "src/"
  19. }
  20. },
  21. "extra": {
  22. "laravel": {
  23. "providers": [
  24. "Longyi\\Core\\Providers\\LongyiCoreServiceProvider"
  25. ]
  26. }
  27. },
  28. "minimum-stability": "dev",
  29. "prefer-stable": true
  30. }