25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

62 satır
2.2KB

  1. {
  2. "name": "cakephp/app",
  3. "description": "CakePHP skeleton app",
  4. "license": "MIT",
  5. "type": "project",
  6. "homepage": "https://cakephp.org",
  7. "require": {
  8. "php": ">=8.2",
  9. "cakephp/cakephp": "5.4.*",
  10. "cakephp/migrations": "^5.0",
  11. "cakephp/plugin-installer": "^2.0",
  12. "dereuromark/cakephp-geo": "^3.8",
  13. "geocoder-php/google-maps-provider": "^4.8",
  14. "geocoder-php/provider-implementation": "*",
  15. "mobiledetect/mobiledetectlib": "^4.8.03",
  16. "willdurand/geocoder": "^5.0"
  17. },
  18. "require-dev": {
  19. "cakephp/bake": "^3.6",
  20. "cakephp/cakephp-codesniffer": "^5.3",
  21. "cakephp/debug_kit": "^5.2",
  22. "josegonzalez/dotenv": "^4.0",
  23. "phpunit/phpunit": "^11.5.3 || ^12.1.3 || ^13.0"
  24. },
  25. "suggest": {
  26. "cakephp/repl": "Console tools for a REPL interface for CakePHP applications.",
  27. "dereuromark/cakephp-ide-helper": "After baking your code, this keeps your annotations in sync with the code evolving from there on for maximum IDE and PHPStan/Psalm compatibility.",
  28. "markstory/asset_compress": "An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification.",
  29. "phpstan/phpstan": "PHPStan focuses on finding errors in your code without actually running it. It catches whole classes of bugs even before you write tests for the code."
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "App\\": "src/"
  34. }
  35. },
  36. "autoload-dev": {
  37. "psr-4": {
  38. "App\\Test\\": "tests/",
  39. "Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
  40. }
  41. },
  42. "config": {
  43. "allow-plugins": {
  44. "cakephp/plugin-installer": true,
  45. "dealerdirect/phpcodesniffer-composer-installer": true
  46. },
  47. "platform-check": true,
  48. "sort-packages": true
  49. },
  50. "scripts": {
  51. "post-install-cmd": "App\\Console\\Installer::postInstall",
  52. "post-create-project-cmd": "App\\Console\\Installer::postInstall",
  53. "check": [
  54. "@test",
  55. "@cs-check"
  56. ],
  57. "cs-check": "phpcs --colors -p",
  58. "cs-fix": "phpcbf --colors -p",
  59. "test": "phpunit --colors=always"
  60. }
  61. }

Powered by TurnKey Linux.