composer.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "cakephp/app",
  3. "description": "CakePHP skeleton app",
  4. "homepage": "http://cakephp.org",
  5. "type": "project",
  6. "license": "MIT",
  7. "require": {
  8. "php": ">=5.5.9",
  9. "cakephp/cakephp": "~3.2",
  10. "mobiledetect/mobiledetectlib": "2.*",
  11. "cakephp/migrations": "~1.0",
  12. "cakephp/plugin-installer": "*",
  13. "maths22/sexp-php": "dev-master",
  14. "composer/semver": "^1.4"
  15. },
  16. "require-dev": {
  17. "psy/psysh": "@stable",
  18. "cakephp/debug_kit": "~3.2",
  19. "cakephp/bake": "~1.1"
  20. },
  21. "suggest": {
  22. "phpunit/phpunit": "Allows automated tests to be run without system-wide install.",
  23. "cakephp/cakephp-codesniffer": "Allows to check the code against the coding standards used in CakePHP."
  24. },
  25. "autoload": {
  26. "psr-4": {
  27. "App\\": "src"
  28. }
  29. },
  30. "autoload-dev": {
  31. "psr-4": {
  32. "App\\Test\\": "tests",
  33. "Cake\\Test\\": "./php/cakephp/cakephp/tests"
  34. }
  35. },
  36. "scripts": {
  37. "post-install-cmd": "App\\Console\\Installer::postInstall",
  38. "post-create-project-cmd": "App\\Console\\Installer::postInstall",
  39. "post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump"
  40. },
  41. "minimum-stability": "dev",
  42. "prefer-stable": true
  43. }