composer.json 840 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "lionsad/service_container",
  3. "description": "Service Container based on CTools plugins with Symfony Integration",
  4. "type": "drupal-module",
  5. "homepage": "https://www.drupal.org/project/service_container",
  6. "license": "GPL-2.0+",
  7. "minimum-stability": "dev",
  8. "prefer-stable": true,
  9. "authors": [
  10. { "name": "Fabian Franz", "email": "fabian@lionsad.de" }
  11. ],
  12. "require": {
  13. "php": ">=5.3.10"
  14. },
  15. "autoload": {
  16. "psr-0": {
  17. "Drupal\\Component\\": "lib/",
  18. "Drupal\\Core\\": "lib/",
  19. "ServiceContainer": "lib/",
  20. "Drupal": "lib/",
  21. "Symfony\\Component\\DependencyInjection": "lib/",
  22. "Psr": "lib/"
  23. },
  24. "psr-4": {
  25. "Drupal\\service_container\\": "src/"
  26. }
  27. },
  28. "autoload-dev": {
  29. "psr-4": {
  30. "Drupal\\service_container\\Tests\\": "tests/src/"
  31. }
  32. }
  33. }