Drupal investigation

composer.json 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "consolidation/annotated-command",
  3. "description": "Initialize Symfony Console commands from annotated command class methods.",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "Greg Anderson",
  8. "email": "greg.1.anderson@greenknowe.org"
  9. }
  10. ],
  11. "autoload":{
  12. "psr-4":{
  13. "Consolidation\\AnnotatedCommand\\": "src"
  14. }
  15. },
  16. "autoload-dev": {
  17. "psr-4": {
  18. "Consolidation\\TestUtils\\": "tests/src"
  19. }
  20. },
  21. "require": {
  22. "php": ">=5.4.0",
  23. "consolidation/output-formatters": "^3.1.5",
  24. "psr/log": "^1",
  25. "symfony/console": "^2.8|~3",
  26. "symfony/event-dispatcher": "^2.5|^3",
  27. "symfony/finder": "^2.5|^3",
  28. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2"
  29. },
  30. "require-dev": {
  31. "phpunit/phpunit": "^4.8",
  32. "satooshi/php-coveralls": "^1.0",
  33. "squizlabs/php_codesniffer": "^2.7"
  34. },
  35. "scripts": {
  36. "cs": "phpcs --standard=PSR2 -n src",
  37. "cbf": "phpcbf --standard=PSR2 -n src",
  38. "unit": "SHELL_INTERACTIVE=true phpunit --colors=always",
  39. "test": [
  40. "@unit",
  41. "@cs"
  42. ]
  43. },
  44. "extra": {
  45. "branch-alias": {
  46. "dev-master": "2.x-dev"
  47. }
  48. }
  49. }