composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "codeigniter4/appstarter",
  3. "description": "CodeIgniter4 starter app",
  4. "license": "MIT",
  5. "type": "project",
  6. "homepage": "https://codeigniter.com",
  7. "support": {
  8. "forum": "https://forum.codeigniter.com/",
  9. "source": "https://github.com/codeigniter4/CodeIgniter4",
  10. "slack": "https://codeigniterchat.slack.com"
  11. },
  12. "require": {
  13. "php": "^8.2",
  14. "codeigniter4/framework": "^4.7"
  15. },
  16. "require-dev": {
  17. "fakerphp/faker": "^1.9",
  18. "mikey179/vfsstream": "^1.6",
  19. "phpunit/phpunit": "^10.5.16"
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "App\\": "app/",
  24. "Config\\": "app/Config/"
  25. },
  26. "exclude-from-classmap": [
  27. "**/Database/Migrations/**"
  28. ]
  29. },
  30. "autoload-dev": {
  31. "psr-4": {
  32. "Tests\\Support\\": "tests/_support"
  33. }
  34. },
  35. "config": {
  36. "optimize-autoloader": true,
  37. "preferred-install": "dist",
  38. "sort-packages": true
  39. },
  40. "scripts": {
  41. "test": "phpunit"
  42. }
  43. }