https://github.com/ronaldaug/sabre
Sabre Flight Integration
https://github.com/ronaldaug/sabre
Last synced: about 1 month ago
JSON representation
Sabre Flight Integration
- Host: GitHub
- URL: https://github.com/ronaldaug/sabre
- Owner: ronaldaug
- Created: 2020-04-21T09:15:22.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-22T04:06:47.000Z (about 5 years ago)
- Last Synced: 2025-02-17T04:01:31.458Z (3 months ago)
- Language: PHP
- Size: 47.9 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sabre SDK for both REST & SOAP APIs
1- Clone this repo to the root folder of Laravel project.
```sh
git clone https://github.com/ronaldaug/sabre.git
```2- Add Sabre credentials to .env file
```
SABRE_ENV=test
SABRE_DOMAIN=
SABRE_PCC=
SABRE_CLIENT_ID=
SABRE_SECRET=
```3- Link Sabre library under **autoload** ➡ **psr-4** in `composer.json`
```sh
"autoload": {
"psr-4": {
"App\\": "app/",
"Up\\Sabre\\": "sabre/src"
}
}```
After the above configuration is done, do composer dump autoload.
```sh
composer dump-autoload -o
```
----------
Forked from `https://github.com/tanvir0604/sabre`
Credit goes to `Md Shafkat Hussain Tanvir`