composer.json 754 B

123456789101112131415161718192021222324252627282930313233343536
  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.2",
  9. "codeigniter4/framework": "^4",
  10. "twbs/bootstrap": "^4.5",
  11. "tecnickcom/tcpdf":"^6.4.2"
  12. },
  13. "require-dev": {
  14. "fzaninotto/faker": "^1.9@dev",
  15. "mikey179/vfsstream": "1.6.*",
  16. "phpunit/phpunit": "^8.5"
  17. },
  18. "autoload-dev": {
  19. "psr-4": {
  20. "Tests\\Support\\": "tests/_support"
  21. }
  22. },
  23. "scripts": {
  24. "post-update-cmd": [
  25. "@composer dump-autoload"
  26. ],
  27. "test": "phpunit"
  28. },
  29. "support": {
  30. "forum": "http://forum.codeigniter.com/",
  31. "source": "https://github.com/codeigniter4/CodeIgniter4",
  32. "slack": "https://codeigniterchat.slack.com"
  33. }
  34. }