1. Go to this page and download the library: Download psx/api library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
psx / api example snippets
class MyController
{
#[Get]
#[Path('/my/endpoint/:id')]
public function getModel(#[Param] int $id, #[Query] int $year): \My\Response\Model
{
// @TODO implement
}
#[Post]
#[Path('/my/endpoint')]
public function insertModel(#[Body] \My\Request\Model $model): \My\Response\Model
{
// @TODO implement
}
}
// use the API manager to obtain a specification from different sources
$manager = new \PSX\Api\ApiManager(new \PSX\Schema\SchemaManager());
// reads the TypeAPI specification and generates a specification
$specification = $manager->getApi('./typeapi.json');
// contains all schema type definitions
$definitions = $specification->getDefinitions();
// returns the resource foo from the specification
$operation = $specification->getOperations()->get('my.operation');
// returns all available arguments
$operation->getArguments();
// returns the return type
$operation->getReturn();
// returns all exceptions which are described
$operation->getThrows();
// returns the assigned HTTP method
$operation->getMethod();
// returns the assigned HTTP path
$operation->getPath();
// creates a PHP client which consumes the defined operations
$registry = \PSX\Api\GeneratorFactory::fromLocal()->factory();
$generator = $registry->getGenerator(\PSX\Api\Repository\LocalRepository::CLIENT_PHP)
$source = $generator->generate($resource);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.