You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

30 lines
686 B

  1. {
  2. "name": "pimple/pimple",
  3. "type": "library",
  4. "description": "Pimple, a simple Dependency Injection Container",
  5. "keywords": ["dependency injection", "container"],
  6. "homepage": "http://pimple.sensiolabs.org",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=5.3.0",
  16. "psr/container": "^1.0"
  17. },
  18. "require-dev": {
  19. "symfony/phpunit-bridge": "^3.2"
  20. },
  21. "autoload": {
  22. "psr-0": { "Pimple": "src/" }
  23. },
  24. "extra": {
  25. "branch-alias": {
  26. "dev-master": "3.2.x-dev"
  27. }
  28. }
  29. }