PHP code example of owowagency / automated-api-docs
1. Go to this page and download the library: Download owowagency/automated-api-docs 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/ */
use OwowAgency\AutomatedApiDocs\DocsGenerator;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication, DocsGenerator;
}
protected function setUp(): void
{
parent::setUp();
$config = config('automated-api-docs');
register_shutdown_function(function () use ($config) {
$this->exportDocsToJson($config);
});
}
public function test_foo()
{
$user = factory(User::class)->create();
$this->actingAs($user)->monitor()->post('/v1/posts', [
'title' => 'Foo bar',
]);
}