composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "league/csv",
  3. "type": "library",
  4. "description" : "Csv data manipulation made easy in PHP",
  5. "keywords": ["csv", "import", "export", "read", "write", "filter"],
  6. "license": "MIT",
  7. "homepage" : "http://csv.thephpleague.com",
  8. "authors": [
  9. {
  10. "name" : "Ignace Nyamagana Butera",
  11. "email" : "nyamsprod@gmail.com",
  12. "homepage" : "https://github.com/nyamsprod/",
  13. "role" : "Developer"
  14. }
  15. ],
  16. "support": {
  17. "forum": "https://groups.google.com/forum/#!forum/thephpleague",
  18. "issues": "https://github.com/thephpleague/csv/issues"
  19. },
  20. "require": {
  21. "php" : ">=5.5.0",
  22. "ext-mbstring" : "*"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit" : "^4.0",
  26. "friendsofphp/php-cs-fixer": "^1.9"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "League\\Csv\\": "src"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "League\\Csv\\Test\\": "test",
  36. "lib\\": "examples\\lib"
  37. }
  38. },
  39. "scripts": {
  40. "test": "phpunit --coverage-text; php-cs-fixer fix -v --diff --dry-run;",
  41. "phpunit": "phpunit --coverage-text",
  42. "phpcs": "php-cs-fixer fix -v --diff --dry-run;"
  43. },
  44. "extra": {
  45. "branch-alias": {
  46. "dev-master": "8.2-dev"
  47. }
  48. }
  49. }