kz / transcriptic-php
transcriptic-php is a PHP package for the Transcriptic API.
Requires
- php: >=5.5.0
- guzzlehttp/guzzle: ~6.0
Requires (Dev)
- phpunit/phpunit: 4.*
Suggests
- illuminate/support: Required to use with Laravel (v5.1.*)
This package is not auto-updated.
Last update: 2025-04-16 21:32:48 UTC
README
transcriptic-php is a PHP package for the Transcriptic API.
The author is not affiliated with TRANSCRIPTIC and TRANSCRIPTIC is not involved in the development of this package in any way.
Install
Via Composer
$ composer require kz/transcriptic-php
Laravel Configuration
transcriptic-php has optional support for Laravel and comes with a Service Provider and Facades for easy integration. The vendor/autoload.php is included by Laravel, so you don't have to require or autoload manually. Just see the instructions below.
After you have installed transcriptic-php, open your Laravel config file config/app.php and add the following lines.
In the $providers array add the service providers for this package:
Kz\Transcriptic\TranscripticServiceProvider::class,
Add the facade of this package to the $aliases array:
'Transcriptic' => Kz\Transcriptic\TranscripticFacade::class,
Now the Transcriptic Class will be auto-loaded by Laravel.
You also need to supply your User Email and User Token in your .env environment file:
TRANSCRIPTIC_EMAIL=john@example.com
TRANSCRIPTIC_TOKEN=XXXXXXXXXXXXXXXXXXXX
Change log
Please see CHANGELOG for more information what has changed recently.
Testing
$ composer test
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.