composer.json 851 B

1234567891011121314151617181920212223242526272829303132333435
  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"
  18. },
  19. "require-dev": {
  20. "symfony/yaml": "~2.1",
  21. "jamesmoss/toml": "~0.1"
  22. },
  23. "suggest": {
  24. "symfony/yaml": "~2.1",
  25. "jamesmoss/toml": "~0.1"
  26. },
  27. "autoload": {
  28. "psr-0": { "Igorw\\Silex": "src" }
  29. },
  30. "extra": {
  31. "branch-alias": {
  32. "dev-master": "1.2-dev"
  33. }
  34. }
  35. }