composer.json 498 B

123456789101112131415161718192021222324
  1. {
  2. "name": "inventory/backend",
  3. "description": "Inventory Management System Backend",
  4. "type": "project",
  5. "require": {
  6. "php": ">=8.1"
  7. },
  8. "require-dev": {
  9. "phpunit/phpunit": "^9.0"
  10. },
  11. "autoload": {
  12. "psr-4": {
  13. "App\\": "src/",
  14. "Models\\": "models/"
  15. }
  16. },
  17. "scripts": {
  18. "post-install-cmd": [
  19. "chmod -R 755 ."
  20. ]
  21. },
  22. "minimum-stability": "stable",
  23. "prefer-stable": true
  24. }