composer.json 558 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "omidfarahani/resumablephp",
  3. "description": "PHP package for Resumable.js customized to comply with wordpress/fantastic",
  4. "authors": [
  5. {
  6. "name": "xu ding",
  7. "email": "thedilab@gmail.com"
  8. }
  9. ],
  10. "require": {
  11. "php": ">=5.3.0",
  12. "cakephp/filesystem": "^3.0",
  13. "monolog/monolog": "^1.17"
  14. },
  15. "require-dev": {
  16. "phpunit/phpunit": "~4.0"
  17. },
  18. "license": "MIT",
  19. "autoload": {
  20. "psr-4": {
  21. "Dilab\\": "src/"
  22. }
  23. },
  24. "autoload-dev": {
  25. "psr-4": {
  26. "Dilab\\Test\\": "test/src/"
  27. }
  28. }
  29. }