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.
 
 
 
 
 

27 lines
804 B

  1. {
  2. "name": "ifsnop/mysqldump-php",
  3. "description": "This is a php version of linux's mysqldump in terminal \"$ mysqldump -u username -p...\"",
  4. "type": "library",
  5. "keywords": ["backup", "mysqldump", "export", "dump", "mysql", "sqlite", "pdo", "database"],
  6. "homepage": "https://github.com/ifsnop/mysqldump-php",
  7. "license": "MIT",
  8. "minimum-stability": "stable",
  9. "authors": [
  10. {
  11. "name" : "Diego Torres",
  12. "homepage": "https://github.com/ifsnop",
  13. "role": "Developer"
  14. }
  15. ],
  16. "require": {
  17. "php": ">=5.3.0"
  18. },
  19. "require-dev": {
  20. "squizlabs/php_codesniffer": "1.*",
  21. "phpunit/phpunit": "3.7.*"
  22. },
  23. "autoload": {
  24. "psr-4": {"Ifsnop\\": "src/Ifsnop/"}
  25. }
  26. }