You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
845B

  1. {
  2. "name": "kci/mindvisioncode",
  3. "description": "A small PHP MVC framework inspired by a Classic ASP MVC framework.",
  4. "type": "project",
  5. "autoload": {
  6. "psr-4": {
  7. "App\\": "app/",
  8. "Core\\": "core/"
  9. },
  10. "files": [
  11. "core/helpers.php"
  12. ]
  13. },
  14. "scripts": {
  15. "migrate": "php scripts/migrate.php up",
  16. "migrate:down": "php scripts/migrate.php down",
  17. "migrate:status": "php scripts/migrate.php status",
  18. "migrate:fresh": "php scripts/migrate.php fresh",
  19. "migrate:fresh-seed": "php scripts/migrate.php fresh --seed"
  20. },
  21. "require": {
  22. "php": ">=8.2",
  23. "cartalyst/sentinel": "^7.0",
  24. "illuminate/database": "^10.0",
  25. "illuminate/events": "^10.0",
  26. "symfony/http-foundation": "^6.0"
  27. }
  28. }

Powered by TurnKey Linux.