composer.json 612 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "illuminate/config",
  3. "license": "MIT",
  4. "authors": [
  5. {
  6. "name": "Taylor Otwell",
  7. "email": "taylorotwell@gmail.com"
  8. }
  9. ],
  10. "require": {
  11. "php": ">=5.3.0",
  12. "illuminate/filesystem": "4.0.x",
  13. "illuminate/support": "4.0.x"
  14. },
  15. "require-dev": {
  16. "phpunit/phpunit": "3.7.*"
  17. },
  18. "autoload": {
  19. "psr-0": {"Illuminate\\Config": ""}
  20. },
  21. "target-dir": "Illuminate/Config",
  22. "extra": {
  23. "branch-alias": {
  24. "dev-master": "4.0-dev"
  25. }
  26. },
  27. "minimum-stability": "dev"
  28. }