composer.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "ajgl/breakpoint-twig-extension",
  3. "description": "Twig extension to set breakpoints",
  4. "keywords": ["twig", "xdebug", "breakpoint"],
  5. "homepage": "https://github.com/ajgarlag/AjglBreakpointTwigExtension",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Antonio J. García Lagar",
  10. "email": "aj@garcialagar.es",
  11. "homepage": "http://aj.garcialagar.es",
  12. "role": "developer"
  13. }
  14. ],
  15. "autoload": {
  16. "psr-4": { "Ajgl\\Twig\\Extension\\": "src/" }
  17. },
  18. "autoload-dev": {
  19. "psr-4": { "Ajgl\\Twig\\Extension\\Tests\\": "tests/" }
  20. },
  21. "require": {
  22. "php": ">=5.6",
  23. "twig/twig": "^1.34|^2.0|^3.0"
  24. },
  25. "require-dev": {
  26. "friendsofphp/php-cs-fixer": "^2.18",
  27. "symfony/framework-bundle": "^2.7|^3.4|^4.4|^5.2",
  28. "symfony/phpunit-bridge": "^4.4|^5.2",
  29. "symfony/twig-bundle": "^2.7|^3.4|^4.4|^5.2"
  30. },
  31. "suggest": {
  32. "ext-xdebug": "The Xdebug extension is required for the breakpoint to work",
  33. "symfony/framework-bundle": "The framework bundle to integrate the extension into Symfony",
  34. "symfony/twig-bundle": "The twig bundle to integrate the extension into Symfony"
  35. },
  36. "scripts": {
  37. "fix-cs": [
  38. "vendor/bin/php-cs-fixer fix --ansi"
  39. ],
  40. "lint": [
  41. "vendor/bin/php-cs-fixer fix --dry-run --ansi"
  42. ],
  43. "test": [
  44. "vendor/bin/simple-phpunit --colors=always"
  45. ]
  46. },
  47. "config": {
  48. "sort-packages": true
  49. },
  50. "extra": {
  51. "branch-alias": {
  52. "dev-master": "0.3.x-dev"
  53. }
  54. }
  55. }