Site du proximo, utilisé pour gérer le stock.
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.

composer.json 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "openfoodfacts/openfoodfacts-php",
  3. "description": "Open Food Facts API Wrapper, the open database about food.",
  4. "homepage": "https://world.openfoodfacts.org/",
  5. "type": "library",
  6. "minimum-stability": "stable",
  7. "license": "MIT",
  8. "support": {
  9. "email": "rmorenp@rampamster.org",
  10. "issues": "https://github.com/openfoodfacts/openfoodfacts-php/issues",
  11. "chat": "https://slack.openfoodfacts.org/",
  12. "source": "https://github.com/openfoodfacts/openfoodfacts-php"
  13. },
  14. "authors": [
  15. {
  16. "name": "Roberto Moreno",
  17. "email": "rmorenp@rampmaster.org",
  18. "homepage": "http://www.rampmaster.org",
  19. "role": "Wrapper Developer"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=7.1",
  24. "guzzlehttp/guzzle": "^6.3",
  25. "psr/log": "^1.0",
  26. "psr/simple-cache": "^1.0",
  27. "ext-json": "*",
  28. "ext-curl": "*"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "OpenFoodFacts\\": "src/"
  33. }
  34. },
  35. "require-dev": {
  36. "phpunit/phpunit": "^7.0",
  37. "symfony/cache": "^4.3",
  38. "monolog/monolog": "^1.23",
  39. "ext-gd": ">=7.2"
  40. }
  41. }