mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 11:23:58 +00:00
.. | ||
lib | ||
tests | ||
composer.json | ||
pom.xml | ||
README.md | ||
SwaggerClient.php |
Requirements
PHP 5.3.3 and later.
Composer
You can install the bindings via Composer. Add this to your composer.json
:
{
"repositories": [
{
"type": "git",
"url": "https://github.com/wing328/SwaggerPetstore-php.git"
}
],
"require": {
"SwaggerPetstore/SwaggerPetstore-php": "*@dev"
}
}
Then install via:
composer install
To use the bindings, use Composer's autoload:
require_once('vendor/autoload.php');
Manual Installation
If you do not wish to use Composer, you can download the latest release. Then, to use the bindings, include the SwaggerPetstore.php
file.
require_once('/path/to/SwaggerPetstore-php/SwaggerPetstore.php');
Getting Started
php test.php
Documentation
TODO
Tests
In order to run tests first install PHPUnit via Composer:
composer update
To run the test suite:
./vendor/bin/phpunit tests