Drupal investigation

composer.json 581B

1234567891011121314151617181920212223
  1. {
  2. "name": "asm89/stack-cors",
  3. "description": "Cross-origin resource sharing library and stack middleware",
  4. "keywords": ["stack", "cors"],
  5. "homepage": "https://github.com/asm89/stack-cors",
  6. "type": "library",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Alexander",
  11. "email": "iam.asm89@gmail.com"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=5.3.2",
  16. "symfony/http-foundation": "~2.1|~3.0",
  17. "symfony/http-kernel": "~2.1|~3.0"
  18. },
  19. "autoload": {
  20. "psr-0": { "Asm89\\Stack": "src/" }
  21. }
  22. }