composer.json 594 B

1234567891011121314151617181920212223
  1. {
  2. "name": "timur-turdyev/laravel-mango-office",
  3. "description": "Mango-office API class",
  4. "keywords": ["Mango-office", "Mango", "Mango-office API", "Mango class"],
  5. "minimum-stability": "stable",
  6. "type": "library",
  7. "version":"1.0",
  8. "repositories": [
  9. {
  10. "type": "composer",
  11. "url": "https://github.com/TimurTurdyev/mango-office.git"
  12. }
  13. ],
  14. "require": {
  15. "php": "^7.2",
  16. "guzzlehttp/guzzle": "^7"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "TimurTurdyev\\MangoOffice\\": "src/"
  21. }
  22. }
  23. }