Include composer dependencies in repo
This commit is contained in:
15
vendor/gregwar/captcha/demo/output.php
vendored
Normal file
15
vendor/gregwar/captcha/demo/output.php
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
include(__DIR__.'/../CaptchaBuilderInterface.php');
|
||||
include(__DIR__.'/../PhraseBuilderInterface.php');
|
||||
include(__DIR__.'/../CaptchaBuilder.php');
|
||||
include(__DIR__.'/../PhraseBuilder.php');
|
||||
|
||||
use Gregwar\Captcha\CaptchaBuilder;
|
||||
|
||||
header('Content-type: image/jpeg');
|
||||
|
||||
CaptchaBuilder::create()
|
||||
->build()
|
||||
->output()
|
||||
;
|
||||
Reference in New Issue
Block a user