composer.json 788 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "igorw/config-service-provider",
  3. "description": "A config ServiceProvider for Silex with support for php, json and yaml.",
  4. "keywords": ["silex"],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Igor Wiedler",
  9. "email": "igor@wiedler.ch"
  10. },
  11. {
  12. "name": "Contributors",
  13. "homepage": "https://github.com/igorw/ConfigServiceProvider/contributors"
  14. }
  15. ],
  16. "require": {
  17. "silex/silex": "1.0.*@dev"
  18. },
  19. "require-dev": {
  20. "symfony/yaml": "~2.1"
  21. },
  22. "suggest": {
  23. "symfony/yaml": "~2.1"
  24. },
  25. "autoload": {
  26. "psr-0": { "Igorw\\Silex": "src" }
  27. },
  28. "extra": {
  29. "branch-alias": {
  30. "dev-master": "1.0-dev"
  31. }
  32. }
  33. }