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.

39 lines
985B

  1. {
  2. "name": "codeigniter4/appstarter",
  3. "type": "project",
  4. "description": "CodeIgniter4 starter app",
  5. "homepage": "https://codeigniter.com",
  6. "license": "MIT",
  7. "require": {
  8. "php": "^7.4 || ^8.0",
  9. "codeigniter4/framework": "^4.0",
  10. "myth/auth": "^1.2"
  11. },
  12. "require-dev": {
  13. "fakerphp/faker": "^1.9",
  14. "mikey179/vfsstream": "^1.6",
  15. "phpunit/phpunit": "^9.1"
  16. },
  17. "suggest": {
  18. "ext-fileinfo": "Improves mime type detection for files"
  19. },
  20. "autoload": {
  21. "exclude-from-classmap": [
  22. "**/Database/Migrations/**"
  23. ]
  24. },
  25. "autoload-dev": {
  26. "psr-4": {
  27. "Tests\\Support\\": "tests/_support"
  28. }
  29. },
  30. "scripts": {
  31. "test": "phpunit"
  32. },
  33. "support": {
  34. "forum": "http://forum.codeigniter.com/",
  35. "source": "https://github.com/codeigniter4/CodeIgniter4",
  36. "slack": "https://codeigniterchat.slack.com"
  37. }
  38. }