├── .htaccess ├── LICENSE ├── README.md ├── application ├── .htaccess ├── cache │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hitokoto_conf.php │ ├── hooks.php │ ├── index.html │ ├── memcached.php │ ├── migration.php │ ├── mimes.php │ ├── pagination.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── Action.php │ ├── Api.php │ ├── Home.php │ ├── Password.php │ ├── User.php │ ├── Welcome.php │ └── index.html ├── core │ └── index.html ├── helpers │ ├── getip_helper.php │ ├── index.html │ ├── json_helper.php │ ├── output_helper.php │ ├── redis_helper.php │ └── trim_array_helper.php ├── hooks │ └── index.html ├── index.html ├── language │ ├── english │ │ └── index.html │ └── index.html ├── libraries │ └── index.html ├── logs │ └── index.html ├── models │ ├── Admin_model.php │ ├── Api_model.php │ ├── Hitokoto_model.php │ ├── SendMail_model.php │ ├── User_model.php │ └── index.html ├── third_party │ └── index.html └── views │ ├── admin │ ├── cat.php │ ├── cat_add.php │ ├── cat_edit.php │ ├── hitokoto_edit.php │ ├── hitokoto_list.php │ ├── member.php │ └── member_edit.php │ ├── comm │ ├── footer.php │ └── header.php │ ├── errors │ ├── cli │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── html │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ └── index.html │ ├── home.php │ ├── user │ ├── add.php │ ├── all.php │ ├── home.php │ ├── login.php │ ├── register.php │ ├── reset.php │ ├── set.php │ └── update.php │ └── welcome_message.php ├── composer.json ├── composer.lock ├── hitokoto.sql ├── index.php ├── static ├── css │ ├── material.min.css │ └── style.css ├── image │ └── img.jpg ├── js │ ├── app.js │ └── material.min.js └── layer │ ├── layer.js │ ├── mobile │ ├── layer.js │ └── need │ │ └── layer.css │ └── theme │ └── default │ ├── icon-ext.png │ ├── icon.png │ ├── layer.css │ ├── loading-0.gif │ ├── loading-1.gif │ └── loading-2.gif ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Log.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ ├── compat │ │ ├── hash.php │ │ ├── index.html │ │ ├── mbstring.php │ │ ├── password.php │ │ └── standard.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_query_builder.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── ibase │ │ │ ├── ibase_driver.php │ │ │ ├── ibase_forge.php │ │ │ ├── ibase_result.php │ │ │ ├── ibase_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ ├── pdo_utility.php │ │ │ └── subdrivers │ │ │ │ ├── index.html │ │ │ │ ├── pdo_4d_driver.php │ │ │ │ ├── pdo_4d_forge.php │ │ │ │ ├── pdo_cubrid_driver.php │ │ │ │ ├── pdo_cubrid_forge.php │ │ │ │ ├── pdo_dblib_driver.php │ │ │ │ ├── pdo_dblib_forge.php │ │ │ │ ├── pdo_firebird_driver.php │ │ │ │ ├── pdo_firebird_forge.php │ │ │ │ ├── pdo_ibm_driver.php │ │ │ │ ├── pdo_ibm_forge.php │ │ │ │ ├── pdo_informix_driver.php │ │ │ │ ├── pdo_informix_forge.php │ │ │ │ ├── pdo_mysql_driver.php │ │ │ │ ├── pdo_mysql_forge.php │ │ │ │ ├── pdo_oci_driver.php │ │ │ │ ├── pdo_oci_forge.php │ │ │ │ ├── pdo_odbc_driver.php │ │ │ │ ├── pdo_odbc_forge.php │ │ │ │ ├── pdo_pgsql_driver.php │ │ │ │ ├── pdo_pgsql_forge.php │ │ │ │ ├── pdo_sqlite_driver.php │ │ │ │ ├── pdo_sqlite_forge.php │ │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ │ └── pdo_sqlsrv_forge.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ ├── sqlite3 │ │ │ ├── index.html │ │ │ ├── sqlite3_driver.php │ │ │ ├── sqlite3_forge.php │ │ │ ├── sqlite3_result.php │ │ │ └── sqlite3_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── pagination_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ ├── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ ├── Cache_memcached.php │ │ ├── Cache_redis.php │ │ ├── Cache_wincache.php │ │ └── index.html │ └── index.html │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Encryption.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Javascript │ ├── Jquery.php │ └── index.html │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session │ ├── Session.php │ ├── SessionHandlerInterface.php │ ├── Session_driver.php │ ├── drivers │ │ ├── Session_database_driver.php │ │ ├── Session_files_driver.php │ │ ├── Session_memcached_driver.php │ │ ├── Session_redis_driver.php │ │ └── index.html │ └── index.html │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ └── index.html └── vendor ├── autoload.php ├── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php └── installed.json ├── gregwar └── captcha │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── demo │ ├── demo.php │ ├── fingerprint.php │ ├── form.php │ ├── index.php │ ├── ocr.php │ ├── output.php │ └── session.php │ ├── phpunit.xml.dist │ ├── src │ └── Gregwar │ │ └── Captcha │ │ ├── CaptchaBuilder.php │ │ ├── CaptchaBuilderInterface.php │ │ ├── Font │ │ ├── captcha0.ttf │ │ ├── captcha1.ttf │ │ ├── captcha2.ttf │ │ ├── captcha3.ttf │ │ ├── captcha4.ttf │ │ └── captcha5.ttf │ │ ├── ImageFileHandler.php │ │ ├── PhraseBuilder.php │ │ └── PhraseBuilderInterface.php │ └── tests │ └── CaptchaBuilderTest.php ├── phpmailer └── phpmailer │ ├── COMMITMENT │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── VERSION │ ├── composer.json │ ├── get_oauth_token.php │ ├── language │ ├── phpmailer.lang-am.php │ ├── phpmailer.lang-ar.php │ ├── phpmailer.lang-az.php │ ├── phpmailer.lang-ba.php │ ├── phpmailer.lang-be.php │ ├── phpmailer.lang-bg.php │ ├── phpmailer.lang-ca.php │ ├── phpmailer.lang-ch.php │ ├── phpmailer.lang-cs.php │ ├── phpmailer.lang-da.php │ ├── phpmailer.lang-de.php │ ├── phpmailer.lang-el.php │ ├── phpmailer.lang-eo.php │ ├── phpmailer.lang-es.php │ ├── phpmailer.lang-et.php │ ├── phpmailer.lang-fa.php │ ├── phpmailer.lang-fi.php │ ├── phpmailer.lang-fo.php │ ├── phpmailer.lang-fr.php │ ├── phpmailer.lang-gl.php │ ├── phpmailer.lang-he.php │ ├── phpmailer.lang-hi.php │ ├── phpmailer.lang-hr.php │ ├── phpmailer.lang-hu.php │ ├── phpmailer.lang-id.php │ ├── phpmailer.lang-it.php │ ├── phpmailer.lang-ja.php │ ├── phpmailer.lang-ka.php │ ├── phpmailer.lang-ko.php │ ├── phpmailer.lang-lt.php │ ├── phpmailer.lang-lv.php │ ├── phpmailer.lang-mg.php │ ├── phpmailer.lang-ms.php │ ├── phpmailer.lang-nb.php │ ├── phpmailer.lang-nl.php │ ├── phpmailer.lang-pl.php │ ├── phpmailer.lang-pt.php │ ├── phpmailer.lang-pt_br.php │ ├── phpmailer.lang-ro.php │ ├── phpmailer.lang-ru.php │ ├── phpmailer.lang-sk.php │ ├── phpmailer.lang-sl.php │ ├── phpmailer.lang-sr.php │ ├── phpmailer.lang-sv.php │ ├── phpmailer.lang-tl.php │ ├── phpmailer.lang-tr.php │ ├── phpmailer.lang-uk.php │ ├── phpmailer.lang-vi.php │ ├── phpmailer.lang-zh.php │ └── phpmailer.lang-zh_cn.php │ └── src │ ├── Exception.php │ ├── OAuth.php │ ├── PHPMailer.php │ ├── POP3.php │ └── SMTP.php └── symfony └── finder ├── .gitignore ├── CHANGELOG.md ├── Comparator ├── Comparator.php ├── DateComparator.php └── NumberComparator.php ├── Exception └── AccessDeniedException.php ├── Finder.php ├── Glob.php ├── Iterator ├── CustomFilterIterator.php ├── DateRangeFilterIterator.php ├── DepthRangeFilterIterator.php ├── ExcludeDirectoryFilterIterator.php ├── FileTypeFilterIterator.php ├── FilecontentFilterIterator.php ├── FilenameFilterIterator.php ├── MultiplePcreFilterIterator.php ├── PathFilterIterator.php ├── RecursiveDirectoryIterator.php ├── SizeRangeFilterIterator.php └── SortableIterator.php ├── LICENSE ├── README.md ├── SplFileInfo.php ├── Tests ├── Comparator │ ├── ComparatorTest.php │ ├── DateComparatorTest.php │ └── NumberComparatorTest.php ├── FinderTest.php ├── Fixtures │ ├── .dot │ │ ├── a │ │ └── b │ │ │ ├── c.neon │ │ │ └── d.neon │ ├── A │ │ ├── B │ │ │ ├── C │ │ │ │ └── abc.dat │ │ │ └── ab.dat │ │ └── a.dat │ ├── copy │ │ └── A │ │ │ ├── B │ │ │ ├── C │ │ │ │ └── abc.dat.copy │ │ │ └── ab.dat.copy │ │ │ └── a.dat.copy │ ├── dolor.txt │ ├── ipsum.txt │ ├── lorem.txt │ ├── one │ │ ├── .dot │ │ ├── a │ │ └── b │ │ │ ├── c.neon │ │ │ └── d.neon │ ├── r+e.gex[c]a(r)s │ │ └── dir │ │ │ └── bar.dat │ └── with space │ │ └── foo.txt ├── GlobTest.php └── Iterator │ ├── CustomFilterIteratorTest.php │ ├── DateRangeFilterIteratorTest.php │ ├── DepthRangeFilterIteratorTest.php │ ├── ExcludeDirectoryFilterIteratorTest.php │ ├── FileTypeFilterIteratorTest.php │ ├── FilecontentFilterIteratorTest.php │ ├── FilenameFilterIteratorTest.php │ ├── Iterator.php │ ├── IteratorTestCase.php │ ├── MockFileListIterator.php │ ├── MockSplFileInfo.php │ ├── MultiplePcreFilterIteratorTest.php │ ├── PathFilterIteratorTest.php │ ├── RealIteratorTestCase.php │ ├── RecursiveDirectoryIteratorTest.php │ ├── SizeRangeFilterIteratorTest.php │ └── SortableIteratorTest.php ├── composer.json └── phpunit.xml.dist /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/README.md -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/.htaccess -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/cache/index.html -------------------------------------------------------------------------------- /application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/config/autoload.php -------------------------------------------------------------------------------- /application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/config/config.php -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/config/constants.php -------------------------------------------------------------------------------- /application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/config/database.php -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/config/doctypes.php -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/config/foreign_chars.php -------------------------------------------------------------------------------- /application/config/hitokoto_conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/config/hitokoto_conf.php -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/config/hooks.php -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/config/index.html -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/config/memcached.php -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/config/migration.php -------------------------------------------------------------------------------- /application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/config/mimes.php -------------------------------------------------------------------------------- /application/config/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/config/pagination.php -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/config/profiler.php -------------------------------------------------------------------------------- /application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/config/routes.php -------------------------------------------------------------------------------- /application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/config/smileys.php -------------------------------------------------------------------------------- /application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/config/user_agents.php -------------------------------------------------------------------------------- /application/controllers/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/controllers/Action.php -------------------------------------------------------------------------------- /application/controllers/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/controllers/Api.php -------------------------------------------------------------------------------- /application/controllers/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/controllers/Home.php -------------------------------------------------------------------------------- /application/controllers/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/controllers/Password.php -------------------------------------------------------------------------------- /application/controllers/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/controllers/User.php -------------------------------------------------------------------------------- /application/controllers/Welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/controllers/Welcome.php -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/controllers/index.html -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/core/index.html -------------------------------------------------------------------------------- /application/helpers/getip_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/helpers/getip_helper.php -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/helpers/index.html -------------------------------------------------------------------------------- /application/helpers/json_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/helpers/json_helper.php -------------------------------------------------------------------------------- /application/helpers/output_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/helpers/output_helper.php -------------------------------------------------------------------------------- /application/helpers/redis_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/helpers/redis_helper.php -------------------------------------------------------------------------------- /application/helpers/trim_array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/helpers/trim_array_helper.php -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/hooks/index.html -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/index.html -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/language/english/index.html -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/language/index.html -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/libraries/index.html -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/logs/index.html -------------------------------------------------------------------------------- /application/models/Admin_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/models/Admin_model.php -------------------------------------------------------------------------------- /application/models/Api_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/models/Api_model.php -------------------------------------------------------------------------------- /application/models/Hitokoto_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/models/Hitokoto_model.php -------------------------------------------------------------------------------- /application/models/SendMail_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/models/SendMail_model.php -------------------------------------------------------------------------------- /application/models/User_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/models/User_model.php -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/models/index.html -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/third_party/index.html -------------------------------------------------------------------------------- /application/views/admin/cat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/admin/cat.php -------------------------------------------------------------------------------- /application/views/admin/cat_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/admin/cat_add.php -------------------------------------------------------------------------------- /application/views/admin/cat_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/admin/cat_edit.php -------------------------------------------------------------------------------- /application/views/admin/hitokoto_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/admin/hitokoto_edit.php -------------------------------------------------------------------------------- /application/views/admin/hitokoto_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/admin/hitokoto_list.php -------------------------------------------------------------------------------- /application/views/admin/member.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/admin/member.php -------------------------------------------------------------------------------- /application/views/admin/member_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/admin/member_edit.php -------------------------------------------------------------------------------- /application/views/comm/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/comm/footer.php -------------------------------------------------------------------------------- /application/views/comm/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/comm/header.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/errors/cli/error_404.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/errors/cli/error_db.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/errors/cli/error_exception.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/errors/cli/error_general.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/errors/cli/error_php.php -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/errors/cli/index.html -------------------------------------------------------------------------------- /application/views/errors/html/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/errors/html/error_404.php -------------------------------------------------------------------------------- /application/views/errors/html/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/errors/html/error_db.php -------------------------------------------------------------------------------- /application/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/errors/html/error_exception.php -------------------------------------------------------------------------------- /application/views/errors/html/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/errors/html/error_general.php -------------------------------------------------------------------------------- /application/views/errors/html/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/errors/html/error_php.php -------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/errors/html/index.html -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/errors/index.html -------------------------------------------------------------------------------- /application/views/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/home.php -------------------------------------------------------------------------------- /application/views/user/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/user/add.php -------------------------------------------------------------------------------- /application/views/user/all.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/user/all.php -------------------------------------------------------------------------------- /application/views/user/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/user/home.php -------------------------------------------------------------------------------- /application/views/user/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/user/login.php -------------------------------------------------------------------------------- /application/views/user/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/user/register.php -------------------------------------------------------------------------------- /application/views/user/reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/user/reset.php -------------------------------------------------------------------------------- /application/views/user/set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/user/set.php -------------------------------------------------------------------------------- /application/views/user/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/user/update.php -------------------------------------------------------------------------------- /application/views/welcome_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/application/views/welcome_message.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/composer.lock -------------------------------------------------------------------------------- /hitokoto.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/hitokoto.sql -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/index.php -------------------------------------------------------------------------------- /static/css/material.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/css/material.min.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/image/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/image/img.jpg -------------------------------------------------------------------------------- /static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/js/app.js -------------------------------------------------------------------------------- /static/js/material.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/js/material.min.js -------------------------------------------------------------------------------- /static/layer/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/layer/layer.js -------------------------------------------------------------------------------- /static/layer/mobile/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/layer/mobile/layer.js -------------------------------------------------------------------------------- /static/layer/mobile/need/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/layer/mobile/need/layer.css -------------------------------------------------------------------------------- /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/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/layer/theme/default/icon.png -------------------------------------------------------------------------------- /static/layer/theme/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/layer/theme/default/layer.css -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/.htaccess -------------------------------------------------------------------------------- /system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/Benchmark.php -------------------------------------------------------------------------------- /system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/Common.php -------------------------------------------------------------------------------- /system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/Config.php -------------------------------------------------------------------------------- /system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/Controller.php -------------------------------------------------------------------------------- /system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/Exceptions.php -------------------------------------------------------------------------------- /system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/Hooks.php -------------------------------------------------------------------------------- /system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/Input.php -------------------------------------------------------------------------------- /system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/Lang.php -------------------------------------------------------------------------------- /system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/Loader.php -------------------------------------------------------------------------------- /system/core/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/Log.php -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/Model.php -------------------------------------------------------------------------------- /system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/Output.php -------------------------------------------------------------------------------- /system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/Router.php -------------------------------------------------------------------------------- /system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/Security.php -------------------------------------------------------------------------------- /system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/URI.php -------------------------------------------------------------------------------- /system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/Utf8.php -------------------------------------------------------------------------------- /system/core/compat/hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/compat/hash.php -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/compat/index.html -------------------------------------------------------------------------------- /system/core/compat/mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/compat/mbstring.php -------------------------------------------------------------------------------- /system/core/compat/password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/compat/password.php -------------------------------------------------------------------------------- /system/core/compat/standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/compat/standard.php -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/core/index.html -------------------------------------------------------------------------------- /system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/DB.php -------------------------------------------------------------------------------- /system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/DB_cache.php -------------------------------------------------------------------------------- /system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/DB_driver.php -------------------------------------------------------------------------------- /system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/DB_forge.php -------------------------------------------------------------------------------- /system/database/DB_query_builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/DB_query_builder.php -------------------------------------------------------------------------------- /system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/DB_result.php -------------------------------------------------------------------------------- /system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/DB_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/cubrid/cubrid_driver.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/cubrid/cubrid_forge.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/cubrid/cubrid_result.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/cubrid/cubrid_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/cubrid/index.html -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/ibase/ibase_driver.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/ibase/ibase_forge.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/ibase/ibase_result.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/ibase/ibase_utility.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/ibase/index.html -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/mssql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/mssql/mssql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/mssql/mssql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/mssql/mssql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/mssql/mssql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/mysql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/mysql/mysql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/mysql/mysql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/mysql/mysql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/mysql/mysql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/mysqli/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/mysqli/mysqli_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/mysqli/mysqli_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/mysqli/mysqli_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/mysqli/mysqli_utility.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/oci8/index.html -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/oci8/oci8_driver.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/oci8/oci8_forge.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/oci8/oci8_result.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/oci8/oci8_utility.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/odbc/index.html -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/odbc/odbc_driver.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/odbc/odbc_forge.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/odbc/odbc_result.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/odbc/odbc_utility.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/index.html -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/pdo_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/pdo_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/pdo_result.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/pdo_utility.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_4d_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_4d_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_4d_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_cubrid_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_dblib_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_dblib_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_dblib_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_dblib_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_firebird_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_firebird_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_firebird_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_firebird_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_informix_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_informix_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_informix_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_informix_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_mysql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_oci_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_oci_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_oci_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_oci_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_pgsql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_pgsql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlite_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_forge.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/postgre/index.html -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/postgre/postgre_driver.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/postgre/postgre_forge.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/postgre/postgre_result.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/postgre/postgre_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/sqlite/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/sqlite/sqlite_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/sqlite/sqlite_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/sqlite/sqlite_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/sqlite/sqlite_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/sqlite3/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/sqlite3/sqlite3_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/sqlite3/sqlite3_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/sqlite3/sqlite3_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/sqlite3/sqlite3_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/sqlsrv/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/sqlsrv/sqlsrv_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/sqlsrv/sqlsrv_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/sqlsrv/sqlsrv_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/drivers/sqlsrv/sqlsrv_utility.php -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/database/index.html -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/fonts/index.html -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/array_helper.php -------------------------------------------------------------------------------- /system/helpers/captcha_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/captcha_helper.php -------------------------------------------------------------------------------- /system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/date_helper.php -------------------------------------------------------------------------------- /system/helpers/directory_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/directory_helper.php -------------------------------------------------------------------------------- /system/helpers/download_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/download_helper.php -------------------------------------------------------------------------------- /system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/email_helper.php -------------------------------------------------------------------------------- /system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/file_helper.php -------------------------------------------------------------------------------- /system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/form_helper.php -------------------------------------------------------------------------------- /system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/html_helper.php -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/index.html -------------------------------------------------------------------------------- /system/helpers/inflector_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/inflector_helper.php -------------------------------------------------------------------------------- /system/helpers/language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/language_helper.php -------------------------------------------------------------------------------- /system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/number_helper.php -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/path_helper.php -------------------------------------------------------------------------------- /system/helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/security_helper.php -------------------------------------------------------------------------------- /system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/string_helper.php -------------------------------------------------------------------------------- /system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/text_helper.php -------------------------------------------------------------------------------- /system/helpers/typography_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/typography_helper.php -------------------------------------------------------------------------------- /system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/url_helper.php -------------------------------------------------------------------------------- /system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/index.html -------------------------------------------------------------------------------- /system/language/english/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/language/english/calendar_lang.php -------------------------------------------------------------------------------- /system/language/english/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/language/english/date_lang.php -------------------------------------------------------------------------------- /system/language/english/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/language/english/db_lang.php -------------------------------------------------------------------------------- /system/language/english/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/language/english/email_lang.php -------------------------------------------------------------------------------- /system/language/english/form_validation_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/language/english/form_validation_lang.php -------------------------------------------------------------------------------- /system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/language/english/ftp_lang.php -------------------------------------------------------------------------------- /system/language/english/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/language/english/imglib_lang.php -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/language/english/index.html -------------------------------------------------------------------------------- /system/language/english/migration_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/language/english/migration_lang.php -------------------------------------------------------------------------------- /system/language/english/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/language/english/number_lang.php -------------------------------------------------------------------------------- /system/language/english/pagination_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/language/english/pagination_lang.php -------------------------------------------------------------------------------- /system/language/english/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/language/english/profiler_lang.php -------------------------------------------------------------------------------- /system/language/english/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/language/english/unit_test_lang.php -------------------------------------------------------------------------------- /system/language/english/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/language/english/upload_lang.php -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/language/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Cache/Cache.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_apc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Cache/drivers/Cache_apc.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Cache/drivers/Cache_dummy.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Cache/drivers/Cache_file.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Cache/drivers/Cache_memcached.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Cache/drivers/Cache_redis.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_wincache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Cache/drivers/Cache_wincache.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Cache/drivers/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Cache/index.html -------------------------------------------------------------------------------- /system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Calendar.php -------------------------------------------------------------------------------- /system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Cart.php -------------------------------------------------------------------------------- /system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Driver.php -------------------------------------------------------------------------------- /system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Email.php -------------------------------------------------------------------------------- /system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /system/libraries/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Encryption.php -------------------------------------------------------------------------------- /system/libraries/Form_validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Form_validation.php -------------------------------------------------------------------------------- /system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Ftp.php -------------------------------------------------------------------------------- /system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /system/libraries/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Javascript.php -------------------------------------------------------------------------------- /system/libraries/Javascript/Jquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Javascript/Jquery.php -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Javascript/index.html -------------------------------------------------------------------------------- /system/libraries/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Migration.php -------------------------------------------------------------------------------- /system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Pagination.php -------------------------------------------------------------------------------- /system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Parser.php -------------------------------------------------------------------------------- /system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Profiler.php -------------------------------------------------------------------------------- /system/libraries/Session/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Session/Session.php -------------------------------------------------------------------------------- /system/libraries/Session/SessionHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Session/SessionHandlerInterface.php -------------------------------------------------------------------------------- /system/libraries/Session/Session_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Session/Session_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_database_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Session/drivers/Session_database_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_files_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Session/drivers/Session_files_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_memcached_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Session/drivers/Session_memcached_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_redis_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Session/drivers/Session_redis_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Session/drivers/index.html -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Session/index.html -------------------------------------------------------------------------------- /system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Table.php -------------------------------------------------------------------------------- /system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Trackback.php -------------------------------------------------------------------------------- /system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Typography.php -------------------------------------------------------------------------------- /system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Upload.php -------------------------------------------------------------------------------- /system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/User_agent.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/Zip.php -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/libraries/index.html -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/gregwar/captcha/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/.gitignore -------------------------------------------------------------------------------- /vendor/gregwar/captcha/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/.travis.yml -------------------------------------------------------------------------------- /vendor/gregwar/captcha/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/LICENSE -------------------------------------------------------------------------------- /vendor/gregwar/captcha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/README.md -------------------------------------------------------------------------------- /vendor/gregwar/captcha/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/composer.json -------------------------------------------------------------------------------- /vendor/gregwar/captcha/demo/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/demo/demo.php -------------------------------------------------------------------------------- /vendor/gregwar/captcha/demo/fingerprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/demo/fingerprint.php -------------------------------------------------------------------------------- /vendor/gregwar/captcha/demo/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/demo/form.php -------------------------------------------------------------------------------- /vendor/gregwar/captcha/demo/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/demo/index.php -------------------------------------------------------------------------------- /vendor/gregwar/captcha/demo/ocr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/demo/ocr.php -------------------------------------------------------------------------------- /vendor/gregwar/captcha/demo/output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/demo/output.php -------------------------------------------------------------------------------- /vendor/gregwar/captcha/demo/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/demo/session.php -------------------------------------------------------------------------------- /vendor/gregwar/captcha/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/gregwar/captcha/src/Gregwar/Captcha/CaptchaBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/src/Gregwar/Captcha/CaptchaBuilder.php -------------------------------------------------------------------------------- /vendor/gregwar/captcha/src/Gregwar/Captcha/CaptchaBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/src/Gregwar/Captcha/CaptchaBuilderInterface.php -------------------------------------------------------------------------------- /vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha0.ttf -------------------------------------------------------------------------------- /vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha1.ttf -------------------------------------------------------------------------------- /vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha2.ttf -------------------------------------------------------------------------------- /vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha3.ttf -------------------------------------------------------------------------------- /vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha4.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha4.ttf -------------------------------------------------------------------------------- /vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha5.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha5.ttf -------------------------------------------------------------------------------- /vendor/gregwar/captcha/src/Gregwar/Captcha/ImageFileHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/src/Gregwar/Captcha/ImageFileHandler.php -------------------------------------------------------------------------------- /vendor/gregwar/captcha/src/Gregwar/Captcha/PhraseBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/src/Gregwar/Captcha/PhraseBuilder.php -------------------------------------------------------------------------------- /vendor/gregwar/captcha/src/Gregwar/Captcha/PhraseBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/src/Gregwar/Captcha/PhraseBuilderInterface.php -------------------------------------------------------------------------------- /vendor/gregwar/captcha/tests/CaptchaBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/tests/CaptchaBuilderTest.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/COMMITMENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/COMMITMENT -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/LICENSE -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/README.md -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/SECURITY.md -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/VERSION: -------------------------------------------------------------------------------- 1 | 6.0.7 -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/composer.json -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/get_oauth_token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/get_oauth_token.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-am.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-am.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ar.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-az.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-az.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ba.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ba.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-be.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-be.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-bg.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ca.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ch.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-cs.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-da.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-da.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-de.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-el.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-el.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-eo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-eo.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-es.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-et.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-fa.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-fi.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-fo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-fo.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-fr.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-gl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-gl.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-he.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-he.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-hi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-hi.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-hr.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-hu.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-id.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-it.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ja.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ka.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ka.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ko.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-lt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-lt.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-lv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-lv.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-mg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-mg.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ms.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-nb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-nb.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-nl.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-pl.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-pt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-pt_br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-pt_br.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ro.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-ru.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-sk.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-sl.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-sr.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-sv.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-tl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-tl.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-tr.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-uk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-uk.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-vi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-vi.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-zh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-zh_cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh_cn.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/src/Exception.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/src/OAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/src/OAuth.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/src/PHPMailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/src/PHPMailer.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/src/POP3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/src/POP3.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/src/SMTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/phpmailer/phpmailer/src/SMTP.php -------------------------------------------------------------------------------- /vendor/symfony/finder/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/finder/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/symfony/finder/Comparator/Comparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Comparator/Comparator.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Comparator/DateComparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Comparator/DateComparator.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Comparator/NumberComparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Comparator/NumberComparator.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Exception/AccessDeniedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Exception/AccessDeniedException.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Finder.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Glob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Glob.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/CustomFilterIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Iterator/CustomFilterIterator.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/DateRangeFilterIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Iterator/DateRangeFilterIterator.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/FileTypeFilterIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Iterator/FileTypeFilterIterator.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/FilecontentFilterIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Iterator/FilecontentFilterIterator.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/FilenameFilterIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Iterator/FilenameFilterIterator.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/MultiplePcreFilterIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Iterator/MultiplePcreFilterIterator.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/PathFilterIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Iterator/PathFilterIterator.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/RecursiveDirectoryIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Iterator/RecursiveDirectoryIterator.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/SortableIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Iterator/SortableIterator.php -------------------------------------------------------------------------------- /vendor/symfony/finder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/finder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/README.md -------------------------------------------------------------------------------- /vendor/symfony/finder/SplFileInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/SplFileInfo.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Comparator/ComparatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Comparator/ComparatorTest.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Comparator/DateComparatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Comparator/DateComparatorTest.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Comparator/NumberComparatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Comparator/NumberComparatorTest.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/FinderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/FinderTest.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/.dot/a: -------------------------------------------------------------------------------- 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/A/B/ab.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/A/a.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy: -------------------------------------------------------------------------------- 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/dolor.txt: -------------------------------------------------------------------------------- 1 | dolor sit amet 2 | DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/ipsum.txt: -------------------------------------------------------------------------------- 1 | ipsum dolor sit amet 2 | IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/lorem.txt: -------------------------------------------------------------------------------- 1 | lorem ipsum dolor sit amet 2 | LOREM IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/.dot: -------------------------------------------------------------------------------- 1 | .dot -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/r+e.gex[c]a(r)s/dir/bar.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/with space/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/GlobTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/GlobTest.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/CustomFilterIteratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Iterator/CustomFilterIteratorTest.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/DateRangeFilterIteratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Iterator/DateRangeFilterIteratorTest.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/DepthRangeFilterIteratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Iterator/DepthRangeFilterIteratorTest.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/ExcludeDirectoryFilterIteratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Iterator/ExcludeDirectoryFilterIteratorTest.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/FileTypeFilterIteratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Iterator/FileTypeFilterIteratorTest.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/FilecontentFilterIteratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Iterator/FilecontentFilterIteratorTest.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/FilenameFilterIteratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Iterator/FilenameFilterIteratorTest.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/Iterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Iterator/Iterator.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/IteratorTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Iterator/IteratorTestCase.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/MockFileListIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Iterator/MockFileListIterator.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/MockSplFileInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Iterator/MockSplFileInfo.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/MultiplePcreFilterIteratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Iterator/MultiplePcreFilterIteratorTest.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/PathFilterIteratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Iterator/PathFilterIteratorTest.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/RealIteratorTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Iterator/RealIteratorTestCase.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/RecursiveDirectoryIteratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Iterator/RecursiveDirectoryIteratorTest.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/SizeRangeFilterIteratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Iterator/SizeRangeFilterIteratorTest.php -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/SortableIteratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/Tests/Iterator/SortableIteratorTest.php -------------------------------------------------------------------------------- /vendor/symfony/finder/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/composer.json -------------------------------------------------------------------------------- /vendor/symfony/finder/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/symfony/finder/phpunit.xml.dist --------------------------------------------------------------------------------