├── vendor
├── phpmailer
│ └── phpmailer
│ │ ├── VERSION
│ │ ├── src
│ │ └── Exception.php
│ │ ├── language
│ │ ├── phpmailer.lang-zh_cn.php
│ │ ├── phpmailer.lang-ch.php
│ │ ├── phpmailer.lang-zh.php
│ │ ├── phpmailer.lang-ko.php
│ │ ├── phpmailer.lang-he.php
│ │ ├── phpmailer.lang-ja.php
│ │ ├── phpmailer.lang-nb.php
│ │ ├── phpmailer.lang-cs.php
│ │ ├── phpmailer.lang-lv.php
│ │ ├── phpmailer.lang-sv.php
│ │ ├── phpmailer.lang-da.php
│ │ ├── phpmailer.lang-vi.php
│ │ ├── phpmailer.lang-lt.php
│ │ ├── phpmailer.lang-nl.php
│ │ ├── phpmailer.lang-fo.php
│ │ ├── phpmailer.lang-eo.php
│ │ ├── phpmailer.lang-hu.php
│ │ ├── phpmailer.lang-az.php
│ │ ├── phpmailer.lang-hi.php
│ │ ├── phpmailer.lang-ar.php
│ │ ├── phpmailer.lang-fa.php
│ │ ├── phpmailer.lang-am.php
│ │ ├── phpmailer.lang-be.php
│ │ ├── phpmailer.lang-bg.php
│ │ ├── phpmailer.lang-ca.php
│ │ ├── phpmailer.lang-tl.php
│ │ ├── phpmailer.lang-es.php
│ │ ├── phpmailer.lang-ba.php
│ │ ├── phpmailer.lang-fi.php
│ │ ├── phpmailer.lang-sk.php
│ │ ├── phpmailer.lang-et.php
│ │ ├── phpmailer.lang-gl.php
│ │ ├── phpmailer.lang-ro.php
│ │ ├── phpmailer.lang-tr.php
│ │ ├── phpmailer.lang-hr.php
│ │ ├── phpmailer.lang-ms.php
│ │ ├── phpmailer.lang-de.php
│ │ ├── phpmailer.lang-pl.php
│ │ ├── phpmailer.lang-el.php
│ │ ├── phpmailer.lang-ru.php
│ │ ├── phpmailer.lang-sl.php
│ │ ├── phpmailer.lang-ka.php
│ │ ├── phpmailer.lang-sr.php
│ │ ├── phpmailer.lang-mg.php
│ │ ├── phpmailer.lang-id.php
│ │ ├── phpmailer.lang-uk.php
│ │ ├── phpmailer.lang-it.php
│ │ ├── phpmailer.lang-pt.php
│ │ ├── phpmailer.lang-pt_br.php
│ │ └── phpmailer.lang-fr.php
│ │ ├── composer.json
│ │ └── COMMITMENT
├── symfony
│ └── finder
│ │ ├── Tests
│ │ ├── Fixtures
│ │ │ ├── .dot
│ │ │ │ ├── a
│ │ │ │ └── b
│ │ │ │ │ ├── c.neon
│ │ │ │ │ └── d.neon
│ │ │ ├── one
│ │ │ │ ├── a
│ │ │ │ ├── .dot
│ │ │ │ └── b
│ │ │ │ │ ├── c.neon
│ │ │ │ │ └── d.neon
│ │ │ ├── A
│ │ │ │ ├── B
│ │ │ │ │ ├── ab.dat
│ │ │ │ │ └── C
│ │ │ │ │ │ └── abc.dat
│ │ │ │ └── a.dat
│ │ │ ├── copy
│ │ │ │ └── A
│ │ │ │ │ ├── B
│ │ │ │ │ ├── ab.dat.copy
│ │ │ │ │ └── C
│ │ │ │ │ │ └── abc.dat.copy
│ │ │ │ │ └── a.dat.copy
│ │ │ ├── with space
│ │ │ │ └── foo.txt
│ │ │ ├── r+e.gex[c]a(r)s
│ │ │ │ └── dir
│ │ │ │ │ └── bar.dat
│ │ │ ├── dolor.txt
│ │ │ ├── ipsum.txt
│ │ │ └── lorem.txt
│ │ ├── Iterator
│ │ │ ├── MockFileListIterator.php
│ │ │ ├── Iterator.php
│ │ │ ├── CustomFilterIteratorTest.php
│ │ │ ├── FilenameFilterIteratorTest.php
│ │ │ ├── RecursiveDirectoryIteratorTest.php
│ │ │ ├── SizeRangeFilterIteratorTest.php
│ │ │ └── FileTypeFilterIteratorTest.php
│ │ └── Comparator
│ │ │ └── ComparatorTest.php
│ │ ├── .gitignore
│ │ ├── Exception
│ │ └── AccessDeniedException.php
│ │ ├── README.md
│ │ ├── composer.json
│ │ ├── phpunit.xml.dist
│ │ ├── LICENSE
│ │ ├── Iterator
│ │ ├── FilenameFilterIterator.php
│ │ ├── DepthRangeFilterIterator.php
│ │ ├── FileTypeFilterIterator.php
│ │ ├── SizeRangeFilterIterator.php
│ │ ├── PathFilterIterator.php
│ │ ├── DateRangeFilterIterator.php
│ │ ├── FilecontentFilterIterator.php
│ │ └── CustomFilterIterator.php
│ │ ├── Comparator
│ │ └── DateComparator.php
│ │ ├── CHANGELOG.md
│ │ └── SplFileInfo.php
├── gregwar
│ └── captcha
│ │ ├── .gitignore
│ │ ├── src
│ │ └── Gregwar
│ │ │ └── Captcha
│ │ │ ├── Font
│ │ │ ├── captcha0.ttf
│ │ │ ├── captcha1.ttf
│ │ │ ├── captcha2.ttf
│ │ │ ├── captcha3.ttf
│ │ │ ├── captcha4.ttf
│ │ │ └── captcha5.ttf
│ │ │ ├── PhraseBuilderInterface.php
│ │ │ ├── CaptchaBuilderInterface.php
│ │ │ └── PhraseBuilder.php
│ │ ├── demo
│ │ ├── demo.php
│ │ ├── fingerprint.php
│ │ ├── output.php
│ │ ├── index.php
│ │ ├── session.php
│ │ ├── ocr.php
│ │ └── form.php
│ │ ├── .travis.yml
│ │ ├── phpunit.xml.dist
│ │ ├── tests
│ │ └── CaptchaBuilderTest.php
│ │ ├── composer.json
│ │ └── LICENSE
├── autoload.php
└── composer
│ ├── autoload_classmap.php
│ ├── autoload_namespaces.php
│ ├── autoload_psr4.php
│ ├── LICENSE
│ ├── autoload_static.php
│ └── autoload_real.php
├── static
├── image
│ └── img.jpg
└── layer
│ └── theme
│ └── default
│ ├── icon.png
│ ├── icon-ext.png
│ ├── loading-0.gif
│ ├── loading-1.gif
│ └── loading-2.gif
├── system
├── fonts
│ ├── texb.ttf
│ └── index.html
├── .htaccess
├── index.html
├── core
│ ├── index.html
│ └── compat
│ │ └── index.html
├── database
│ ├── index.html
│ └── drivers
│ │ ├── index.html
│ │ ├── cubrid
│ │ └── index.html
│ │ ├── ibase
│ │ └── index.html
│ │ ├── mssql
│ │ └── index.html
│ │ ├── mysql
│ │ └── index.html
│ │ ├── mysqli
│ │ └── index.html
│ │ ├── oci8
│ │ └── index.html
│ │ ├── odbc
│ │ └── index.html
│ │ ├── pdo
│ │ ├── index.html
│ │ └── subdrivers
│ │ │ └── index.html
│ │ ├── sqlite
│ │ └── index.html
│ │ ├── sqlsrv
│ │ └── index.html
│ │ ├── postgre
│ │ └── index.html
│ │ └── sqlite3
│ │ ├── index.html
│ │ └── sqlite3_utility.php
├── helpers
│ └── index.html
├── language
│ ├── index.html
│ └── english
│ │ ├── index.html
│ │ ├── number_lang.php
│ │ └── pagination_lang.php
└── libraries
│ ├── index.html
│ ├── Cache
│ ├── index.html
│ └── drivers
│ │ └── index.html
│ ├── Session
│ ├── index.html
│ └── drivers
│ │ └── index.html
│ └── Javascript
│ └── index.html
├── composer.json
├── .htaccess
├── application
├── .htaccess
├── views
│ ├── errors
│ │ ├── cli
│ │ │ ├── error_404.php
│ │ │ ├── error_general.php
│ │ │ ├── error_db.php
│ │ │ ├── index.html
│ │ │ ├── error_php.php
│ │ │ └── error_exception.php
│ │ ├── index.html
│ │ └── html
│ │ │ ├── index.html
│ │ │ ├── error_php.php
│ │ │ ├── error_exception.php
│ │ │ ├── error_general.php
│ │ │ ├── error_db.php
│ │ │ └── error_404.php
│ ├── comm
│ │ └── footer.php
│ ├── home.php
│ ├── user
│ │ └── reset.php
│ └── admin
│ │ ├── member.php
│ │ ├── cat.php
│ │ └── cat_add.php
├── index.html
├── cache
│ └── index.html
├── config
│ ├── index.html
│ ├── hitokoto_conf.php
│ ├── hooks.php
│ ├── profiler.php
│ ├── memcached.php
│ ├── pagination.php
│ └── routes.php
├── core
│ └── index.html
├── helpers
│ ├── index.html
│ ├── trim_array_helper.php
│ ├── output_helper.php
│ ├── json_helper.php
│ ├── getip_helper.php
│ └── redis_helper.php
├── hooks
│ └── index.html
├── language
│ ├── index.html
│ └── english
│ │ └── index.html
├── logs
│ └── index.html
├── models
│ ├── index.html
│ └── Api_model.php
├── controllers
│ ├── index.html
│ ├── Welcome.php
│ ├── Home.php
│ └── Password.php
├── libraries
│ └── index.html
└── third_party
│ └── index.html
├── LICENSE
└── README.md
/vendor/phpmailer/phpmailer/VERSION:
--------------------------------------------------------------------------------
1 | 6.0.7
--------------------------------------------------------------------------------
/vendor/symfony/finder/Tests/Fixtures/.dot/a:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Tests/Fixtures/one/a:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Tests/Fixtures/A/B/ab.dat:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Tests/Fixtures/A/a.dat:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Tests/Fixtures/.dot/b/c.neon:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Tests/Fixtures/.dot/b/d.neon:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Tests/Fixtures/A/B/C/abc.dat:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Tests/Fixtures/one/.dot:
--------------------------------------------------------------------------------
1 | .dot
--------------------------------------------------------------------------------
/vendor/symfony/finder/Tests/Fixtures/one/b/c.neon:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Tests/Fixtures/one/b/d.neon:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Tests/Fixtures/copy/A/B/ab.dat.copy:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Tests/Fixtures/copy/A/a.dat.copy:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Tests/Fixtures/with space/foo.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Tests/Fixtures/dolor.txt:
--------------------------------------------------------------------------------
1 | dolor sit amet
2 | DOLOR SIT AMET
--------------------------------------------------------------------------------
/static/image/img.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/image/img.jpg
--------------------------------------------------------------------------------
/vendor/gregwar/captcha/.gitignore:
--------------------------------------------------------------------------------
1 | demo/*.jpg
2 | demo/*.pgm
3 | demo/temp/
4 | vendor/
5 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Tests/Fixtures/ipsum.txt:
--------------------------------------------------------------------------------
1 | ipsum dolor sit amet
2 | IPSUM DOLOR SIT AMET
--------------------------------------------------------------------------------
/system/fonts/texb.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/fonts/texb.ttf
--------------------------------------------------------------------------------
/vendor/symfony/finder/Tests/Fixtures/lorem.txt:
--------------------------------------------------------------------------------
1 | lorem ipsum dolor sit amet
2 | LOREM IPSUM DOLOR SIT AMET
--------------------------------------------------------------------------------
/static/layer/theme/default/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/layer/theme/default/icon.png
--------------------------------------------------------------------------------
/static/layer/theme/default/icon-ext.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/layer/theme/default/icon-ext.png
--------------------------------------------------------------------------------
/static/layer/theme/default/loading-0.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/layer/theme/default/loading-0.gif
--------------------------------------------------------------------------------
/static/layer/theme/default/loading-1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/layer/theme/default/loading-1.gif
--------------------------------------------------------------------------------
/static/layer/theme/default/loading-2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/layer/theme/default/loading-2.gif
--------------------------------------------------------------------------------
/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "require": {
3 | "phpmailer/phpmailer": "^6.0",
4 | "gregwar/captcha": "^1.1"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/.htaccess:
--------------------------------------------------------------------------------
1 | RewriteEngine On
2 | RewriteCond %{REQUEST_FILENAME} !-f
3 | RewriteCond %{REQUEST_FILENAME} !-d
4 | RewriteRule ^(.*)$ index.php/$1 [L]
--------------------------------------------------------------------------------
/system/.htaccess:
--------------------------------------------------------------------------------
1 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | build() 10 | ->save('out.jpg') 11 | ; 12 | -------------------------------------------------------------------------------- /vendor/gregwar/captcha/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3.3 5 | - 5.3 6 | - 5.4 7 | - 5.5 8 | - 5.6 9 | - 7.0 10 | - 7.1 11 | - 7.2 12 | - hhvm 13 | 14 | script: 15 | - composer install 16 | - phpunit 17 | -------------------------------------------------------------------------------- /vendor/gregwar/captcha/demo/fingerprint.php: -------------------------------------------------------------------------------- 1 | build() 9 | ->getFingerprint() 10 | ); 11 | 12 | echo "\n"; 13 | -------------------------------------------------------------------------------- /vendor/gregwar/captcha/demo/output.php: -------------------------------------------------------------------------------- 1 | build() 11 | ->output() 12 | ; 13 | -------------------------------------------------------------------------------- /application/helpers/trim_array_helper.php: -------------------------------------------------------------------------------- 1 | $value){ 17 | $array[$key]=trim($value); 18 | } 19 | return $array; 20 | } -------------------------------------------------------------------------------- /application/helpers/output_helper.php: -------------------------------------------------------------------------------- 1 | 14){ 13 | $string = mb_substr($string,0,14,'utf-8'); 14 | return $string."..."; 15 | } 16 | return $string; 17 | } -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/symfony/finder'), 10 | 'PHPMailer\\PHPMailer\\' => array($vendorDir . '/phpmailer/phpmailer/src'), 11 | 'Gregwar\\' => array($vendorDir . '/gregwar/captcha/src/Gregwar'), 12 | ); 13 | -------------------------------------------------------------------------------- /vendor/gregwar/captcha/demo/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |