Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/max-kut/rtoperator
Client for www.rtoperator.ru (see docs https://www.rtoperator.ru/export.html)
https://github.com/max-kut/rtoperator
Last synced: about 1 month ago
JSON representation
Client for www.rtoperator.ru (see docs https://www.rtoperator.ru/export.html)
- Host: GitHub
- URL: https://github.com/max-kut/rtoperator
- Owner: max-kut
- License: mit
- Created: 2019-11-14T08:19:44.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-09T08:55:41.000Z (almost 5 years ago)
- Last Synced: 2024-04-19T18:22:03.070Z (8 months ago)
- Language: PHP
- Size: 30.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# www.rtoperator.ru API library
PHP обертка для работы с API [www.rtoperator.ru](https://www.rtoperator.ru "www.rtoperator.ru")
[Документация по API](https://www.rtoperator.ru/export.html).
Библиотека еще в разработке. Не стесняйтесь создавать issue
## Установка
Установка в проект осуществляется при помощи **composer**:`$ composer require maxkut/rtoperator`
Минимальные системные требования:
`php: ^7.2`## Использование
Тут все просто.
```php
// make client
$client = new Rtoperator\Client();
// execute methods
$client->getAll(); // Rtoperator\Data\All
$client->getTours(); // Rtoperator\Data\TourCollection
$client->getTourDates($tourId); // Rtoperator\Data\DatesCollection
$client->getTourImages($tourId); // array|string[]
$client->getTourServices($tourId); // Rtoperator\Data\ServicesCollection
$client->getServiceDiscounts($serviceId); // Rtoperator\Data\DiscountCollection
$client->getTourPrice($tourId); // Rtoperator\Data\PriceCollection
$client->getCountries(); // Rtoperator\Data\CountryCollection
$client->getDiscounts(); // Rtoperator\Data\DiscountCollection
$client->getCategoryMap(); // Rtoperator\Data\CategoryMapCollection
$client->getCategories(); // Rtoperator\Data\CategoryCollection
```### Помощь в разработке
создавайте PR