├── .gitignore ├── .htaccess ├── README.md ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── memcached.php │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── Welcome.php │ └── index.html ├── core │ └── index.html ├── doctrine ├── doctrine.php ├── helpers │ └── index.html ├── hooks │ └── index.html ├── index.html ├── language │ ├── english │ │ └── index.html │ └── index.html ├── libraries │ ├── Doctrine.php │ └── index.html ├── logs │ └── index.html ├── models │ ├── Entity │ │ ├── User.php │ │ └── UserGroup.php │ └── index.html ├── third_party │ └── index.html └── views │ ├── 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 │ ├── index.html │ └── welcome_message.php ├── composer.json ├── composer.lock ├── index.php ├── license.txt ├── 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 ├── user_guide ├── .buildinfo ├── DCO.html ├── _downloads │ └── ELDocs.tmbundle.zip ├── _images │ ├── appflowchart.gif │ └── smile.gif ├── _static │ ├── ajax-loader.gif │ ├── basic.css │ ├── ci-icon.ico │ ├── comment-bright.png │ ├── comment-close.png │ ├── comment.png │ ├── css │ │ ├── badge_only.css │ │ ├── citheme.css │ │ └── theme.css │ ├── doctools.js │ ├── down-pressed.png │ ├── down.png │ ├── file.png │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── jquery.js │ ├── js │ │ ├── oldtheme.js │ │ └── theme.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── underscore.js │ ├── up-pressed.png │ ├── up.png │ └── websupport.js ├── changelog.html ├── contributing │ └── index.html ├── database │ ├── caching.html │ ├── call_function.html │ ├── configuration.html │ ├── connecting.html │ ├── db_driver_reference.html │ ├── examples.html │ ├── forge.html │ ├── helpers.html │ ├── index.html │ ├── metadata.html │ ├── queries.html │ ├── query_builder.html │ ├── results.html │ ├── transactions.html │ └── utilities.html ├── documentation │ └── index.html ├── general │ ├── alternative_php.html │ ├── ancillary_classes.html │ ├── autoloader.html │ ├── caching.html │ ├── cli.html │ ├── common_functions.html │ ├── compatibility_functions.html │ ├── controllers.html │ ├── core_classes.html │ ├── creating_drivers.html │ ├── creating_libraries.html │ ├── credits.html │ ├── drivers.html │ ├── environments.html │ ├── errors.html │ ├── helpers.html │ ├── hooks.html │ ├── index.html │ ├── libraries.html │ ├── managing_apps.html │ ├── models.html │ ├── profiling.html │ ├── requirements.html │ ├── reserved_names.html │ ├── routing.html │ ├── security.html │ ├── styleguide.html │ ├── urls.html │ ├── views.html │ └── welcome.html ├── genindex.html ├── helpers │ ├── array_helper.html │ ├── captcha_helper.html │ ├── cookie_helper.html │ ├── date_helper.html │ ├── directory_helper.html │ ├── download_helper.html │ ├── email_helper.html │ ├── file_helper.html │ ├── form_helper.html │ ├── html_helper.html │ ├── index.html │ ├── inflector_helper.html │ ├── language_helper.html │ ├── number_helper.html │ ├── path_helper.html │ ├── security_helper.html │ ├── smiley_helper.html │ ├── string_helper.html │ ├── text_helper.html │ ├── typography_helper.html │ ├── url_helper.html │ └── xml_helper.html ├── index.html ├── installation │ ├── downloads.html │ ├── index.html │ ├── troubleshooting.html │ ├── upgrade_120.html │ ├── upgrade_130.html │ ├── upgrade_131.html │ ├── upgrade_132.html │ ├── upgrade_133.html │ ├── upgrade_140.html │ ├── upgrade_141.html │ ├── upgrade_150.html │ ├── upgrade_152.html │ ├── upgrade_153.html │ ├── upgrade_154.html │ ├── upgrade_160.html │ ├── upgrade_161.html │ ├── upgrade_162.html │ ├── upgrade_163.html │ ├── upgrade_170.html │ ├── upgrade_171.html │ ├── upgrade_172.html │ ├── upgrade_200.html │ ├── upgrade_201.html │ ├── upgrade_202.html │ ├── upgrade_203.html │ ├── upgrade_210.html │ ├── upgrade_211.html │ ├── upgrade_212.html │ ├── upgrade_213.html │ ├── upgrade_214.html │ ├── upgrade_220.html │ ├── upgrade_221.html │ ├── upgrade_222.html │ ├── upgrade_223.html │ ├── upgrade_300.html │ ├── upgrade_301.html │ ├── upgrade_302.html │ ├── upgrade_303.html │ ├── upgrade_304.html │ ├── upgrade_305.html │ ├── upgrade_306.html │ ├── upgrade_b11.html │ └── upgrading.html ├── libraries │ ├── benchmark.html │ ├── caching.html │ ├── calendar.html │ ├── cart.html │ ├── config.html │ ├── email.html │ ├── encrypt.html │ ├── encryption.html │ ├── file_uploading.html │ ├── form_validation.html │ ├── ftp.html │ ├── image_lib.html │ ├── index.html │ ├── input.html │ ├── javascript.html │ ├── language.html │ ├── loader.html │ ├── migration.html │ ├── output.html │ ├── pagination.html │ ├── parser.html │ ├── security.html │ ├── sessions.html │ ├── table.html │ ├── trackback.html │ ├── typography.html │ ├── unit_testing.html │ ├── uri.html │ ├── user_agent.html │ ├── xmlrpc.html │ └── zip.html ├── license.html ├── objects.inv ├── overview │ ├── appflow.html │ ├── at_a_glance.html │ ├── features.html │ ├── getting_started.html │ ├── goals.html │ ├── index.html │ └── mvc.html ├── search.html ├── searchindex.js └── tutorial │ ├── conclusion.html │ ├── create_news_items.html │ ├── index.html │ ├── news_section.html │ └── static_pages.html └── vendor ├── autoload.php ├── bin ├── doctrine ├── doctrine-dbal └── doctrine.php ├── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php └── installed.json ├── doctrine ├── annotations │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── lib │ │ └── Doctrine │ │ └── Common │ │ └── Annotations │ │ ├── Annotation.php │ │ ├── Annotation │ │ ├── Attribute.php │ │ ├── Attributes.php │ │ ├── Enum.php │ │ ├── IgnoreAnnotation.php │ │ ├── Required.php │ │ └── Target.php │ │ ├── AnnotationException.php │ │ ├── AnnotationReader.php │ │ ├── AnnotationRegistry.php │ │ ├── CachedReader.php │ │ ├── DocLexer.php │ │ ├── DocParser.php │ │ ├── FileCacheReader.php │ │ ├── IndexedReader.php │ │ ├── PhpParser.php │ │ ├── Reader.php │ │ ├── SimpleAnnotationReader.php │ │ └── TokenParser.php ├── cache │ ├── .coveralls.yml │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── UPGRADE.md │ ├── build.properties │ ├── build.xml │ ├── composer.json │ ├── lib │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Cache │ │ │ ├── ApcCache.php │ │ │ ├── ApcuCache.php │ │ │ ├── ArrayCache.php │ │ │ ├── Cache.php │ │ │ ├── CacheProvider.php │ │ │ ├── ChainCache.php │ │ │ ├── ClearableCache.php │ │ │ ├── CouchbaseCache.php │ │ │ ├── FileCache.php │ │ │ ├── FilesystemCache.php │ │ │ ├── FlushableCache.php │ │ │ ├── MemcacheCache.php │ │ │ ├── MemcachedCache.php │ │ │ ├── MongoDBCache.php │ │ │ ├── MultiGetCache.php │ │ │ ├── MultiPutCache.php │ │ │ ├── PhpFileCache.php │ │ │ ├── PredisCache.php │ │ │ ├── RedisCache.php │ │ │ ├── RiakCache.php │ │ │ ├── SQLite3Cache.php │ │ │ ├── Version.php │ │ │ ├── VoidCache.php │ │ │ ├── WinCacheCache.php │ │ │ ├── XcacheCache.php │ │ │ └── ZendDataCache.php │ ├── phpunit.xml.dist │ └── tests │ │ ├── Doctrine │ │ └── Tests │ │ │ ├── Common │ │ │ └── Cache │ │ │ │ ├── ApcCacheTest.php │ │ │ │ ├── ApcuCacheTest.php │ │ │ │ ├── ArrayCacheTest.php │ │ │ │ ├── BaseFileCacheTest.php │ │ │ │ ├── CacheProviderTest.php │ │ │ │ ├── CacheTest.php │ │ │ │ ├── ChainCacheTest.php │ │ │ │ ├── CouchbaseCacheTest.php │ │ │ │ ├── FileCacheTest.php │ │ │ │ ├── FilesystemCacheTest.php │ │ │ │ ├── MemcacheCacheTest.php │ │ │ │ ├── MemcachedCacheTest.php │ │ │ │ ├── MongoDBCacheTest.php │ │ │ │ ├── PhpFileCacheTest.php │ │ │ │ ├── PredisCacheTest.php │ │ │ │ ├── RedisCacheTest.php │ │ │ │ ├── RiakCacheTest.php │ │ │ │ ├── SQLite3CacheTest.php │ │ │ │ ├── VoidCacheTest.php │ │ │ │ ├── WinCacheCacheTest.php │ │ │ │ ├── XcacheCacheTest.php │ │ │ │ └── ZendDataCacheTest.php │ │ │ └── DoctrineTestCase.php │ │ └── travis │ │ ├── php.ini │ │ └── phpunit.travis.xml ├── collections │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── lib │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Collections │ │ │ ├── AbstractLazyCollection.php │ │ │ ├── ArrayCollection.php │ │ │ ├── Collection.php │ │ │ ├── Criteria.php │ │ │ ├── Expr │ │ │ ├── ClosureExpressionVisitor.php │ │ │ ├── Comparison.php │ │ │ ├── CompositeExpression.php │ │ │ ├── Expression.php │ │ │ ├── ExpressionVisitor.php │ │ │ └── Value.php │ │ │ ├── ExpressionBuilder.php │ │ │ └── Selectable.php │ ├── phpunit.xml.dist │ └── tests │ │ └── Doctrine │ │ └── Tests │ │ ├── Common │ │ └── Collections │ │ │ ├── AbstractLazyCollectionTest.php │ │ │ ├── ArrayCollectionTest.php │ │ │ ├── ClosureExpressionVisitorTest.php │ │ │ ├── CollectionTest.php │ │ │ ├── CriteriaTest.php │ │ │ └── ExpressionBuilderTest.php │ │ ├── LazyArrayCollection.php │ │ └── TestInit.php ├── common │ ├── .gitignore │ ├── .gitmodules │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── UPGRADE_TO_2_1 │ ├── UPGRADE_TO_2_2 │ ├── build.properties │ ├── build.xml │ ├── composer.json │ ├── lib │ │ └── Doctrine │ │ │ └── Common │ │ │ ├── ClassLoader.php │ │ │ ├── CommonException.php │ │ │ ├── Comparable.php │ │ │ ├── EventArgs.php │ │ │ ├── EventManager.php │ │ │ ├── EventSubscriber.php │ │ │ ├── Lexer.php │ │ │ ├── NotifyPropertyChanged.php │ │ │ ├── Persistence │ │ │ ├── AbstractManagerRegistry.php │ │ │ ├── ConnectionRegistry.php │ │ │ ├── Event │ │ │ │ ├── LifecycleEventArgs.php │ │ │ │ ├── LoadClassMetadataEventArgs.php │ │ │ │ ├── ManagerEventArgs.php │ │ │ │ ├── OnClearEventArgs.php │ │ │ │ └── PreUpdateEventArgs.php │ │ │ ├── ManagerRegistry.php │ │ │ ├── Mapping │ │ │ │ ├── AbstractClassMetadataFactory.php │ │ │ │ ├── ClassMetadata.php │ │ │ │ ├── ClassMetadataFactory.php │ │ │ │ ├── Driver │ │ │ │ │ ├── AnnotationDriver.php │ │ │ │ │ ├── DefaultFileLocator.php │ │ │ │ │ ├── FileDriver.php │ │ │ │ │ ├── FileLocator.php │ │ │ │ │ ├── MappingDriver.php │ │ │ │ │ ├── MappingDriverChain.php │ │ │ │ │ ├── PHPDriver.php │ │ │ │ │ ├── StaticPHPDriver.php │ │ │ │ │ └── SymfonyFileLocator.php │ │ │ │ ├── MappingException.php │ │ │ │ ├── ReflectionService.php │ │ │ │ ├── RuntimeReflectionService.php │ │ │ │ └── StaticReflectionService.php │ │ │ ├── ObjectManager.php │ │ │ ├── ObjectManagerAware.php │ │ │ ├── ObjectManagerDecorator.php │ │ │ ├── ObjectRepository.php │ │ │ ├── PersistentObject.php │ │ │ └── Proxy.php │ │ │ ├── PropertyChangedListener.php │ │ │ ├── Proxy │ │ │ ├── AbstractProxyFactory.php │ │ │ ├── Autoloader.php │ │ │ ├── Exception │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── OutOfBoundsException.php │ │ │ │ ├── ProxyException.php │ │ │ │ └── UnexpectedValueException.php │ │ │ ├── Proxy.php │ │ │ ├── ProxyDefinition.php │ │ │ └── ProxyGenerator.php │ │ │ ├── Reflection │ │ │ ├── ClassFinderInterface.php │ │ │ ├── Psr0FindFile.php │ │ │ ├── ReflectionProviderInterface.php │ │ │ ├── RuntimePublicReflectionProperty.php │ │ │ ├── StaticReflectionClass.php │ │ │ ├── StaticReflectionMethod.php │ │ │ ├── StaticReflectionParser.php │ │ │ └── StaticReflectionProperty.php │ │ │ ├── Util │ │ │ ├── ClassUtils.php │ │ │ ├── Debug.php │ │ │ └── Inflector.php │ │ │ └── Version.php │ ├── phpunit.xml.dist │ └── tests │ │ ├── .gitignore │ │ ├── Doctrine │ │ └── Tests │ │ │ ├── Common │ │ │ ├── ClassLoaderTest.php │ │ │ ├── ClassLoaderTest │ │ │ │ ├── ClassA.class.php │ │ │ │ ├── ClassB.class.php │ │ │ │ ├── ClassC.class.php │ │ │ │ ├── ClassD.php │ │ │ │ ├── ClassE.php │ │ │ │ ├── EmptyFile.class.php │ │ │ │ ├── ExternalLoader.php │ │ │ │ ├── InterfaceA.class.php │ │ │ │ └── TraitA.class.php │ │ │ ├── DoctrineExceptionTest.php │ │ │ ├── EventManagerTest.php │ │ │ ├── Persistence │ │ │ │ ├── ManagerRegistryTest.php │ │ │ │ ├── Mapping │ │ │ │ │ ├── AnnotationDriverTest.php │ │ │ │ │ ├── ChainDriverTest.php │ │ │ │ │ ├── ClassMetadataFactoryTest.php │ │ │ │ │ ├── DefaultFileLocatorTest.php │ │ │ │ │ ├── FileDriverTest.php │ │ │ │ │ ├── PHPDriverTest.php │ │ │ │ │ ├── RuntimeReflectionServiceTest.php │ │ │ │ │ ├── StaticPHPDriverTest.php │ │ │ │ │ ├── StaticReflectionServiceTest.php │ │ │ │ │ ├── SymfonyFileLocatorTest.php │ │ │ │ │ ├── _custom_ns │ │ │ │ │ │ ├── dir │ │ │ │ │ │ │ ├── stdClass.yml │ │ │ │ │ │ │ └── sub │ │ │ │ │ │ │ │ ├── subClass.yml │ │ │ │ │ │ │ │ └── subsub │ │ │ │ │ │ │ │ └── subSubClass.yml │ │ │ │ │ │ └── dot │ │ │ │ │ │ │ ├── stdClass.yml │ │ │ │ │ │ │ ├── sub.subClass.yml │ │ │ │ │ │ │ └── sub.subsub.subSubClass.yml │ │ │ │ │ ├── _files │ │ │ │ │ │ ├── Bar │ │ │ │ │ │ │ └── subDirClass.yml │ │ │ │ │ │ ├── TestEntity.php │ │ │ │ │ │ ├── annotation │ │ │ │ │ │ │ └── TestClass.php │ │ │ │ │ │ ├── global.yml │ │ │ │ │ │ └── stdClass.yml │ │ │ │ │ └── _match_ns │ │ │ │ │ │ ├── Bar │ │ │ │ │ │ └── barEntity.yml │ │ │ │ │ │ └── testEntity.yml │ │ │ │ ├── ObjectManagerDecoratorTest.php │ │ │ │ └── PersistentObjectTest.php │ │ │ ├── Proxy │ │ │ │ ├── AbstractProxyFactoryTest.php │ │ │ │ ├── AutoloaderTest.php │ │ │ │ ├── CallableTypeHintClass.php │ │ │ │ ├── InvalidTypeHintClass.php │ │ │ │ ├── LazyLoadableObject.php │ │ │ │ ├── LazyLoadableObjectClassMetadata.php │ │ │ │ ├── MagicCloneClass.php │ │ │ │ ├── MagicGetByRefClass.php │ │ │ │ ├── MagicGetClass.php │ │ │ │ ├── MagicIssetClass.php │ │ │ │ ├── MagicSetClass.php │ │ │ │ ├── MagicSleepClass.php │ │ │ │ ├── MagicWakeupClass.php │ │ │ │ ├── ProxyClassGeneratorTest.php │ │ │ │ ├── ProxyLogicTest.php │ │ │ │ ├── ProxyMagicMethodsTest.php │ │ │ │ ├── SerializedClass.php │ │ │ │ ├── SleepClass.php │ │ │ │ ├── StaticPropertyClass.php │ │ │ │ └── VariadicTypeHintClass.php │ │ │ ├── Reflection │ │ │ │ ├── DeeperNamespaceParent.php │ │ │ │ ├── Dummies │ │ │ │ │ └── NoParent.php │ │ │ │ ├── ExampleAnnotationClass.php │ │ │ │ ├── FullyClassifiedParent.php │ │ │ │ ├── NoParent.php │ │ │ │ ├── RuntimePublicReflectionPropertyTest.php │ │ │ │ ├── SameNamespaceParent.php │ │ │ │ ├── StaticReflectionParserTest.php │ │ │ │ └── UseParent.php │ │ │ └── Util │ │ │ │ ├── ClassUtilsTest.php │ │ │ │ └── DebugTest.php │ │ │ ├── DoctrineTestCase.php │ │ │ └── TestInit.php │ │ └── README.markdown ├── dbal │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── UPGRADE.md │ ├── bin │ │ ├── doctrine-dbal │ │ └── doctrine-dbal.php │ ├── composer.json │ └── lib │ │ └── Doctrine │ │ └── DBAL │ │ ├── Cache │ │ ├── ArrayStatement.php │ │ ├── CacheException.php │ │ ├── QueryCacheProfile.php │ │ └── ResultCacheStatement.php │ │ ├── Configuration.php │ │ ├── Connection.php │ │ ├── ConnectionException.php │ │ ├── Connections │ │ └── MasterSlaveConnection.php │ │ ├── DBALException.php │ │ ├── Driver.php │ │ ├── Driver │ │ ├── AbstractDB2Driver.php │ │ ├── AbstractDriverException.php │ │ ├── AbstractMySQLDriver.php │ │ ├── AbstractOracleDriver.php │ │ ├── AbstractPostgreSQLDriver.php │ │ ├── AbstractSQLAnywhereDriver.php │ │ ├── AbstractSQLServerDriver.php │ │ ├── AbstractSQLiteDriver.php │ │ ├── Connection.php │ │ ├── DriverException.php │ │ ├── DrizzlePDOMySql │ │ │ ├── Connection.php │ │ │ └── Driver.php │ │ ├── ExceptionConverterDriver.php │ │ ├── IBMDB2 │ │ │ ├── DB2Connection.php │ │ │ ├── DB2Driver.php │ │ │ ├── DB2Exception.php │ │ │ └── DB2Statement.php │ │ ├── Mysqli │ │ │ ├── Driver.php │ │ │ ├── MysqliConnection.php │ │ │ ├── MysqliException.php │ │ │ └── MysqliStatement.php │ │ ├── OCI8 │ │ │ ├── Driver.php │ │ │ ├── OCI8Connection.php │ │ │ ├── OCI8Exception.php │ │ │ └── OCI8Statement.php │ │ ├── PDOConnection.php │ │ ├── PDOException.php │ │ ├── PDOIbm │ │ │ └── Driver.php │ │ ├── PDOMySql │ │ │ └── Driver.php │ │ ├── PDOOracle │ │ │ └── Driver.php │ │ ├── PDOPgSql │ │ │ └── Driver.php │ │ ├── PDOSqlite │ │ │ └── Driver.php │ │ ├── PDOSqlsrv │ │ │ ├── Connection.php │ │ │ └── Driver.php │ │ ├── PDOStatement.php │ │ ├── PingableConnection.php │ │ ├── ResultStatement.php │ │ ├── SQLAnywhere │ │ │ ├── Driver.php │ │ │ ├── SQLAnywhereConnection.php │ │ │ ├── SQLAnywhereException.php │ │ │ └── SQLAnywhereStatement.php │ │ ├── SQLSrv │ │ │ ├── Driver.php │ │ │ ├── LastInsertId.php │ │ │ ├── SQLSrvConnection.php │ │ │ ├── SQLSrvException.php │ │ │ └── SQLSrvStatement.php │ │ ├── ServerInfoAwareConnection.php │ │ └── Statement.php │ │ ├── DriverManager.php │ │ ├── Event │ │ ├── ConnectionEventArgs.php │ │ ├── Listeners │ │ │ ├── MysqlSessionInit.php │ │ │ ├── OracleSessionInit.php │ │ │ └── SQLSessionInit.php │ │ ├── SchemaAlterTableAddColumnEventArgs.php │ │ ├── SchemaAlterTableChangeColumnEventArgs.php │ │ ├── SchemaAlterTableEventArgs.php │ │ ├── SchemaAlterTableRemoveColumnEventArgs.php │ │ ├── SchemaAlterTableRenameColumnEventArgs.php │ │ ├── SchemaColumnDefinitionEventArgs.php │ │ ├── SchemaCreateTableColumnEventArgs.php │ │ ├── SchemaCreateTableEventArgs.php │ │ ├── SchemaDropTableEventArgs.php │ │ ├── SchemaEventArgs.php │ │ └── SchemaIndexDefinitionEventArgs.php │ │ ├── Events.php │ │ ├── Exception │ │ ├── ConnectionException.php │ │ ├── ConstraintViolationException.php │ │ ├── DatabaseObjectExistsException.php │ │ ├── DatabaseObjectNotFoundException.php │ │ ├── DriverException.php │ │ ├── ForeignKeyConstraintViolationException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidFieldNameException.php │ │ ├── NonUniqueFieldNameException.php │ │ ├── NotNullConstraintViolationException.php │ │ ├── ReadOnlyException.php │ │ ├── ServerException.php │ │ ├── SyntaxErrorException.php │ │ ├── TableExistsException.php │ │ ├── TableNotFoundException.php │ │ └── UniqueConstraintViolationException.php │ │ ├── Id │ │ ├── TableGenerator.php │ │ └── TableGeneratorSchemaVisitor.php │ │ ├── LockMode.php │ │ ├── Logging │ │ ├── DebugStack.php │ │ ├── EchoSQLLogger.php │ │ ├── LoggerChain.php │ │ └── SQLLogger.php │ │ ├── Platforms │ │ ├── AbstractPlatform.php │ │ ├── DB2Platform.php │ │ ├── DrizzlePlatform.php │ │ ├── Keywords │ │ │ ├── DB2Keywords.php │ │ │ ├── DrizzleKeywords.php │ │ │ ├── KeywordList.php │ │ │ ├── MsSQLKeywords.php │ │ │ ├── MySQL57Keywords.php │ │ │ ├── MySQLKeywords.php │ │ │ ├── OracleKeywords.php │ │ │ ├── PostgreSQL91Keywords.php │ │ │ ├── PostgreSQL92Keywords.php │ │ │ ├── PostgreSQLKeywords.php │ │ │ ├── ReservedKeywordsValidator.php │ │ │ ├── SQLAnywhere11Keywords.php │ │ │ ├── SQLAnywhere12Keywords.php │ │ │ ├── SQLAnywhere16Keywords.php │ │ │ ├── SQLAnywhereKeywords.php │ │ │ ├── SQLServer2005Keywords.php │ │ │ ├── SQLServer2008Keywords.php │ │ │ ├── SQLServer2012Keywords.php │ │ │ ├── SQLServerKeywords.php │ │ │ └── SQLiteKeywords.php │ │ ├── MySQL57Platform.php │ │ ├── MySqlPlatform.php │ │ ├── OraclePlatform.php │ │ ├── PostgreSQL91Platform.php │ │ ├── PostgreSQL92Platform.php │ │ ├── PostgreSqlPlatform.php │ │ ├── SQLAnywhere11Platform.php │ │ ├── SQLAnywhere12Platform.php │ │ ├── SQLAnywhere16Platform.php │ │ ├── SQLAnywherePlatform.php │ │ ├── SQLAzurePlatform.php │ │ ├── SQLServer2005Platform.php │ │ ├── SQLServer2008Platform.php │ │ ├── SQLServer2012Platform.php │ │ ├── SQLServerPlatform.php │ │ └── SqlitePlatform.php │ │ ├── Portability │ │ ├── Connection.php │ │ └── Statement.php │ │ ├── Query │ │ ├── Expression │ │ │ ├── CompositeExpression.php │ │ │ └── ExpressionBuilder.php │ │ ├── QueryBuilder.php │ │ └── QueryException.php │ │ ├── README.markdown │ │ ├── SQLParserUtils.php │ │ ├── SQLParserUtilsException.php │ │ ├── Schema │ │ ├── AbstractAsset.php │ │ ├── AbstractSchemaManager.php │ │ ├── Column.php │ │ ├── ColumnDiff.php │ │ ├── Comparator.php │ │ ├── Constraint.php │ │ ├── DB2SchemaManager.php │ │ ├── DrizzleSchemaManager.php │ │ ├── ForeignKeyConstraint.php │ │ ├── Identifier.php │ │ ├── Index.php │ │ ├── MySqlSchemaManager.php │ │ ├── OracleSchemaManager.php │ │ ├── PostgreSqlSchemaManager.php │ │ ├── SQLAnywhereSchemaManager.php │ │ ├── SQLServerSchemaManager.php │ │ ├── Schema.php │ │ ├── SchemaConfig.php │ │ ├── SchemaDiff.php │ │ ├── SchemaException.php │ │ ├── Sequence.php │ │ ├── SqliteSchemaManager.php │ │ ├── Synchronizer │ │ │ ├── AbstractSchemaSynchronizer.php │ │ │ ├── SchemaSynchronizer.php │ │ │ └── SingleDatabaseSynchronizer.php │ │ ├── Table.php │ │ ├── TableDiff.php │ │ ├── View.php │ │ └── Visitor │ │ │ ├── AbstractVisitor.php │ │ │ ├── CreateSchemaSqlCollector.php │ │ │ ├── DropSchemaSqlCollector.php │ │ │ ├── Graphviz.php │ │ │ ├── NamespaceVisitor.php │ │ │ ├── RemoveNamespacedAssets.php │ │ │ ├── SchemaDiffVisitor.php │ │ │ └── Visitor.php │ │ ├── Sharding │ │ ├── PoolingShardConnection.php │ │ ├── PoolingShardManager.php │ │ ├── SQLAzure │ │ │ ├── SQLAzureFederationsSynchronizer.php │ │ │ ├── SQLAzureShardManager.php │ │ │ └── Schema │ │ │ │ └── MultiTenantVisitor.php │ │ ├── ShardChoser │ │ │ ├── MultiTenantShardChoser.php │ │ │ └── ShardChoser.php │ │ ├── ShardManager.php │ │ └── ShardingException.php │ │ ├── Statement.php │ │ ├── Tools │ │ └── Console │ │ │ ├── Command │ │ │ ├── ImportCommand.php │ │ │ ├── ReservedWordsCommand.php │ │ │ └── RunSqlCommand.php │ │ │ ├── ConsoleRunner.php │ │ │ └── Helper │ │ │ └── ConnectionHelper.php │ │ ├── Types │ │ ├── ArrayType.php │ │ ├── BigIntType.php │ │ ├── BinaryType.php │ │ ├── BlobType.php │ │ ├── BooleanType.php │ │ ├── ConversionException.php │ │ ├── DateTimeType.php │ │ ├── DateTimeTzType.php │ │ ├── DateType.php │ │ ├── DecimalType.php │ │ ├── FloatType.php │ │ ├── GuidType.php │ │ ├── IntegerType.php │ │ ├── JsonArrayType.php │ │ ├── ObjectType.php │ │ ├── SimpleArrayType.php │ │ ├── SmallIntType.php │ │ ├── StringType.php │ │ ├── TextType.php │ │ ├── TimeType.php │ │ ├── Type.php │ │ └── VarDateTimeType.php │ │ ├── Version.php │ │ └── VersionAwarePlatformDriver.php ├── inflector │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── lib │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Inflector │ │ │ └── Inflector.php │ ├── phpunit.xml.dist │ └── tests │ │ └── Doctrine │ │ └── Tests │ │ ├── Common │ │ └── Inflector │ │ │ └── InflectorTest.php │ │ ├── DoctrineTestCase.php │ │ └── TestInit.php ├── instantiator │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.install.sh │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpmd.xml.dist │ ├── phpunit.xml.dist │ ├── src │ │ └── Doctrine │ │ │ └── Instantiator │ │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── UnexpectedValueException.php │ │ │ ├── Instantiator.php │ │ │ └── InstantiatorInterface.php │ └── tests │ │ └── DoctrineTest │ │ ├── InstantiatorPerformance │ │ └── InstantiatorPerformanceEvent.php │ │ ├── InstantiatorTest │ │ ├── Exception │ │ │ ├── InvalidArgumentExceptionTest.php │ │ │ └── UnexpectedValueExceptionTest.php │ │ └── InstantiatorTest.php │ │ └── InstantiatorTestAsset │ │ ├── AbstractClassAsset.php │ │ ├── ArrayObjectAsset.php │ │ ├── ExceptionAsset.php │ │ ├── FinalExceptionAsset.php │ │ ├── PharAsset.php │ │ ├── PharExceptionAsset.php │ │ ├── SerializableArrayObjectAsset.php │ │ ├── SimpleSerializableAsset.php │ │ ├── SimpleTraitAsset.php │ │ ├── UnCloneableAsset.php │ │ ├── UnserializeExceptionArrayObjectAsset.php │ │ ├── WakeUpNoticesAsset.php │ │ └── XMLReaderAsset.php ├── lexer │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── lib │ │ └── Doctrine │ │ └── Common │ │ └── Lexer │ │ └── AbstractLexer.php └── orm │ ├── .coveralls.yml │ ├── LICENSE │ ├── README.markdown │ ├── SECURITY.md │ ├── UPGRADE.md │ ├── bin │ ├── doctrine │ ├── doctrine-pear.php │ ├── doctrine.bat │ └── doctrine.php │ ├── composer.json │ ├── docs │ ├── LICENSE.md │ ├── README.md │ ├── bin │ │ ├── generate-docs.sh │ │ └── install-dependencies.sh │ └── en │ │ ├── Makefile │ │ ├── _exts │ │ └── configurationblock.py │ │ ├── changelog │ │ └── migration_2_5.rst │ │ ├── conf.py │ │ ├── cookbook │ │ ├── advanced-field-value-conversion-using-custom-mapping-types.rst │ │ ├── aggregate-fields.rst │ │ ├── custom-mapping-types.rst │ │ ├── decorator-pattern.rst │ │ ├── dql-custom-walkers.rst │ │ ├── dql-user-defined-functions.rst │ │ ├── entities-in-session.rst │ │ ├── implementing-arrayaccess-for-domain-objects.rst │ │ ├── implementing-the-notify-changetracking-policy.rst │ │ ├── implementing-wakeup-or-clone.rst │ │ ├── integrating-with-codeigniter.rst │ │ ├── mysql-enums.rst │ │ ├── resolve-target-entity-listener.rst │ │ ├── sql-table-prefixes.rst │ │ ├── strategy-cookbook-introduction.rst │ │ ├── validation-of-entities.rst │ │ └── working-with-datetime.rst │ │ ├── index.rst │ │ ├── make.bat │ │ ├── reference │ │ ├── advanced-configuration.rst │ │ ├── annotations-reference.rst │ │ ├── architecture.rst │ │ ├── association-mapping.rst │ │ ├── basic-mapping.rst │ │ ├── batch-processing.rst │ │ ├── best-practices.rst │ │ ├── caching.rst │ │ ├── change-tracking-policies.rst │ │ ├── configuration.rst │ │ ├── dql-doctrine-query-language.rst │ │ ├── events.rst │ │ ├── faq.rst │ │ ├── filters.rst │ │ ├── improving-performance.rst │ │ ├── inheritance-mapping.rst │ │ ├── installation.rst │ │ ├── limitations-and-known-issues.rst │ │ ├── metadata-drivers.rst │ │ ├── namingstrategy.rst │ │ ├── native-sql.rst │ │ ├── partial-objects.rst │ │ ├── php-mapping.rst │ │ ├── query-builder.rst │ │ ├── second-level-cache.rst │ │ ├── security.rst │ │ ├── tools.rst │ │ ├── transactions-and-concurrency.rst │ │ ├── unitofwork-associations.rst │ │ ├── unitofwork.rst │ │ ├── working-with-associations.rst │ │ ├── working-with-objects.rst │ │ ├── xml-mapping.rst │ │ └── yaml-mapping.rst │ │ ├── toc.rst │ │ └── tutorials │ │ ├── composite-primary-keys.rst │ │ ├── embeddables.rst │ │ ├── extra-lazy-associations.rst │ │ ├── getting-started-database.rst │ │ ├── getting-started-models.rst │ │ ├── getting-started.rst │ │ ├── ordered-associations.rst │ │ ├── override-field-association-mappings-in-subclasses.rst │ │ ├── pagination.rst │ │ └── working-with-indexed-associations.rst │ ├── doctrine-mapping.xsd │ └── lib │ └── Doctrine │ └── ORM │ ├── AbstractQuery.php │ ├── Cache.php │ ├── Cache │ ├── AssociationCacheEntry.php │ ├── CacheConfiguration.php │ ├── CacheEntry.php │ ├── CacheException.php │ ├── CacheFactory.php │ ├── CacheKey.php │ ├── CollectionCacheEntry.php │ ├── CollectionCacheKey.php │ ├── CollectionHydrator.php │ ├── ConcurrentRegion.php │ ├── DefaultCache.php │ ├── DefaultCacheFactory.php │ ├── DefaultCollectionHydrator.php │ ├── DefaultEntityHydrator.php │ ├── DefaultQueryCache.php │ ├── EntityCacheEntry.php │ ├── EntityCacheKey.php │ ├── EntityHydrator.php │ ├── Lock.php │ ├── LockException.php │ ├── Logging │ │ ├── CacheLogger.php │ │ ├── CacheLoggerChain.php │ │ └── StatisticsCacheLogger.php │ ├── MultiGetRegion.php │ ├── Persister │ │ ├── CachedPersister.php │ │ ├── Collection │ │ │ ├── AbstractCollectionPersister.php │ │ │ ├── CachedCollectionPersister.php │ │ │ ├── NonStrictReadWriteCachedCollectionPersister.php │ │ │ ├── ReadOnlyCachedCollectionPersister.php │ │ │ └── ReadWriteCachedCollectionPersister.php │ │ └── Entity │ │ │ ├── AbstractEntityPersister.php │ │ │ ├── CachedEntityPersister.php │ │ │ ├── NonStrictReadWriteCachedEntityPersister.php │ │ │ ├── ReadOnlyCachedEntityPersister.php │ │ │ └── ReadWriteCachedEntityPersister.php │ ├── QueryCache.php │ ├── QueryCacheEntry.php │ ├── QueryCacheKey.php │ ├── QueryCacheValidator.php │ ├── Region.php │ ├── Region │ │ ├── DefaultMultiGetRegion.php │ │ ├── DefaultRegion.php │ │ ├── FileLockRegion.php │ │ └── UpdateTimestampCache.php │ ├── RegionsConfiguration.php │ ├── TimestampCacheEntry.php │ ├── TimestampCacheKey.php │ ├── TimestampQueryCacheValidator.php │ └── TimestampRegion.php │ ├── Configuration.php │ ├── Decorator │ └── EntityManagerDecorator.php │ ├── EntityManager.php │ ├── EntityManagerInterface.php │ ├── EntityNotFoundException.php │ ├── EntityRepository.php │ ├── Event │ ├── LifecycleEventArgs.php │ ├── ListenersInvoker.php │ ├── LoadClassMetadataEventArgs.php │ ├── OnClassMetadataNotFoundEventArgs.php │ ├── OnClearEventArgs.php │ ├── OnFlushEventArgs.php │ ├── PostFlushEventArgs.php │ ├── PreFlushEventArgs.php │ └── PreUpdateEventArgs.php │ ├── Events.php │ ├── Id │ ├── AbstractIdGenerator.php │ ├── AssignedGenerator.php │ ├── BigIntegerIdentityGenerator.php │ ├── IdentityGenerator.php │ ├── SequenceGenerator.php │ ├── TableGenerator.php │ └── UuidGenerator.php │ ├── Internal │ ├── CommitOrderCalculator.php │ ├── Hydration │ │ ├── AbstractHydrator.php │ │ ├── ArrayHydrator.php │ │ ├── HydrationException.php │ │ ├── IterableResult.php │ │ ├── ObjectHydrator.php │ │ ├── ScalarHydrator.php │ │ ├── SimpleObjectHydrator.php │ │ └── SingleScalarHydrator.php │ └── HydrationCompleteHandler.php │ ├── LazyCriteriaCollection.php │ ├── Mapping │ ├── Annotation.php │ ├── AnsiQuoteStrategy.php │ ├── AssociationOverride.php │ ├── AssociationOverrides.php │ ├── AttributeOverride.php │ ├── AttributeOverrides.php │ ├── Builder │ │ ├── AssociationBuilder.php │ │ ├── ClassMetadataBuilder.php │ │ ├── EmbeddedBuilder.php │ │ ├── EntityListenerBuilder.php │ │ ├── FieldBuilder.php │ │ ├── ManyToManyAssociationBuilder.php │ │ └── OneToManyAssociationBuilder.php │ ├── Cache.php │ ├── ChangeTrackingPolicy.php │ ├── ClassMetadata.php │ ├── ClassMetadataFactory.php │ ├── ClassMetadataInfo.php │ ├── Column.php │ ├── ColumnResult.php │ ├── CustomIdGenerator.php │ ├── DefaultEntityListenerResolver.php │ ├── DefaultNamingStrategy.php │ ├── DefaultQuoteStrategy.php │ ├── DiscriminatorColumn.php │ ├── DiscriminatorMap.php │ ├── Driver │ │ ├── AnnotationDriver.php │ │ ├── DatabaseDriver.php │ │ ├── DoctrineAnnotations.php │ │ ├── DriverChain.php │ │ ├── PHPDriver.php │ │ ├── SimplifiedXmlDriver.php │ │ ├── SimplifiedYamlDriver.php │ │ ├── StaticPHPDriver.php │ │ ├── XmlDriver.php │ │ └── YamlDriver.php │ ├── Embeddable.php │ ├── Embedded.php │ ├── Entity.php │ ├── EntityListenerResolver.php │ ├── EntityListeners.php │ ├── EntityResult.php │ ├── FieldResult.php │ ├── GeneratedValue.php │ ├── HasLifecycleCallbacks.php │ ├── Id.php │ ├── Index.php │ ├── InheritanceType.php │ ├── JoinColumn.php │ ├── JoinColumns.php │ ├── JoinTable.php │ ├── ManyToMany.php │ ├── ManyToOne.php │ ├── MappedSuperclass.php │ ├── MappingException.php │ ├── NamedNativeQueries.php │ ├── NamedNativeQuery.php │ ├── NamedQueries.php │ ├── NamedQuery.php │ ├── NamingStrategy.php │ ├── OneToMany.php │ ├── OneToOne.php │ ├── OrderBy.php │ ├── PostLoad.php │ ├── PostPersist.php │ ├── PostRemove.php │ ├── PostUpdate.php │ ├── PreFlush.php │ ├── PrePersist.php │ ├── PreRemove.php │ ├── PreUpdate.php │ ├── QuoteStrategy.php │ ├── Reflection │ │ └── ReflectionPropertiesGetter.php │ ├── ReflectionEmbeddedProperty.php │ ├── SequenceGenerator.php │ ├── SqlResultSetMapping.php │ ├── SqlResultSetMappings.php │ ├── Table.php │ ├── UnderscoreNamingStrategy.php │ ├── UniqueConstraint.php │ └── Version.php │ ├── NativeQuery.php │ ├── NoResultException.php │ ├── NonUniqueResultException.php │ ├── ORMException.php │ ├── ORMInvalidArgumentException.php │ ├── OptimisticLockException.php │ ├── PersistentCollection.php │ ├── Persisters │ ├── Collection │ │ ├── AbstractCollectionPersister.php │ │ ├── CollectionPersister.php │ │ ├── ManyToManyPersister.php │ │ └── OneToManyPersister.php │ ├── Entity │ │ ├── AbstractEntityInheritancePersister.php │ │ ├── BasicEntityPersister.php │ │ ├── CachedPersisterContext.php │ │ ├── EntityPersister.php │ │ ├── JoinedSubclassPersister.php │ │ └── SingleTablePersister.php │ ├── PersisterException.php │ ├── SqlExpressionVisitor.php │ └── SqlValueVisitor.php │ ├── PessimisticLockException.php │ ├── Proxy │ ├── Autoloader.php │ ├── Proxy.php │ └── ProxyFactory.php │ ├── Query.php │ ├── Query │ ├── AST │ │ ├── ASTException.php │ │ ├── AggregateExpression.php │ │ ├── ArithmeticExpression.php │ │ ├── ArithmeticFactor.php │ │ ├── ArithmeticTerm.php │ │ ├── BetweenExpression.php │ │ ├── CoalesceExpression.php │ │ ├── CollectionMemberExpression.php │ │ ├── ComparisonExpression.php │ │ ├── ConditionalExpression.php │ │ ├── ConditionalFactor.php │ │ ├── ConditionalPrimary.php │ │ ├── ConditionalTerm.php │ │ ├── DeleteClause.php │ │ ├── DeleteStatement.php │ │ ├── EmptyCollectionComparisonExpression.php │ │ ├── ExistsExpression.php │ │ ├── FromClause.php │ │ ├── Functions │ │ │ ├── AbsFunction.php │ │ │ ├── BitAndFunction.php │ │ │ ├── BitOrFunction.php │ │ │ ├── ConcatFunction.php │ │ │ ├── CurrentDateFunction.php │ │ │ ├── CurrentTimeFunction.php │ │ │ ├── CurrentTimestampFunction.php │ │ │ ├── DateAddFunction.php │ │ │ ├── DateDiffFunction.php │ │ │ ├── DateSubFunction.php │ │ │ ├── FunctionNode.php │ │ │ ├── IdentityFunction.php │ │ │ ├── LengthFunction.php │ │ │ ├── LocateFunction.php │ │ │ ├── LowerFunction.php │ │ │ ├── ModFunction.php │ │ │ ├── SizeFunction.php │ │ │ ├── SqrtFunction.php │ │ │ ├── SubstringFunction.php │ │ │ ├── TrimFunction.php │ │ │ └── UpperFunction.php │ │ ├── GeneralCaseExpression.php │ │ ├── GroupByClause.php │ │ ├── HavingClause.php │ │ ├── IdentificationVariableDeclaration.php │ │ ├── InExpression.php │ │ ├── IndexBy.php │ │ ├── InputParameter.php │ │ ├── InstanceOfExpression.php │ │ ├── Join.php │ │ ├── JoinAssociationDeclaration.php │ │ ├── JoinAssociationPathExpression.php │ │ ├── JoinClassPathExpression.php │ │ ├── JoinVariableDeclaration.php │ │ ├── LikeExpression.php │ │ ├── Literal.php │ │ ├── NewObjectExpression.php │ │ ├── Node.php │ │ ├── NullComparisonExpression.php │ │ ├── NullIfExpression.php │ │ ├── OrderByClause.php │ │ ├── OrderByItem.php │ │ ├── ParenthesisExpression.php │ │ ├── PartialObjectExpression.php │ │ ├── PathExpression.php │ │ ├── QuantifiedExpression.php │ │ ├── RangeVariableDeclaration.php │ │ ├── SelectClause.php │ │ ├── SelectExpression.php │ │ ├── SelectStatement.php │ │ ├── SimpleArithmeticExpression.php │ │ ├── SimpleCaseExpression.php │ │ ├── SimpleSelectClause.php │ │ ├── SimpleSelectExpression.php │ │ ├── SimpleWhenClause.php │ │ ├── Subselect.php │ │ ├── SubselectFromClause.php │ │ ├── SubselectIdentificationVariableDeclaration.php │ │ ├── UpdateClause.php │ │ ├── UpdateItem.php │ │ ├── UpdateStatement.php │ │ ├── WhenClause.php │ │ └── WhereClause.php │ ├── Exec │ │ ├── AbstractSqlExecutor.php │ │ ├── MultiTableDeleteExecutor.php │ │ ├── MultiTableUpdateExecutor.php │ │ ├── SingleSelectExecutor.php │ │ └── SingleTableDeleteUpdateExecutor.php │ ├── Expr.php │ ├── Expr │ │ ├── Andx.php │ │ ├── Base.php │ │ ├── Comparison.php │ │ ├── Composite.php │ │ ├── From.php │ │ ├── Func.php │ │ ├── GroupBy.php │ │ ├── Join.php │ │ ├── Literal.php │ │ ├── Math.php │ │ ├── OrderBy.php │ │ ├── Orx.php │ │ └── Select.php │ ├── Filter │ │ └── SQLFilter.php │ ├── FilterCollection.php │ ├── Lexer.php │ ├── Parameter.php │ ├── ParameterTypeInferer.php │ ├── Parser.php │ ├── ParserResult.php │ ├── Printer.php │ ├── QueryException.php │ ├── QueryExpressionVisitor.php │ ├── ResultSetMapping.php │ ├── ResultSetMappingBuilder.php │ ├── SqlWalker.php │ ├── TreeWalker.php │ ├── TreeWalkerAdapter.php │ ├── TreeWalkerChain.php │ └── TreeWalkerChainIterator.php │ ├── QueryBuilder.php │ ├── README.markdown │ ├── Repository │ ├── DefaultRepositoryFactory.php │ └── RepositoryFactory.php │ ├── Tools │ ├── AttachEntityListenersListener.php │ ├── Console │ │ ├── Command │ │ │ ├── ClearCache │ │ │ │ ├── CollectionRegionCommand.php │ │ │ │ ├── EntityRegionCommand.php │ │ │ │ ├── MetadataCommand.php │ │ │ │ ├── QueryCommand.php │ │ │ │ ├── QueryRegionCommand.php │ │ │ │ └── ResultCommand.php │ │ │ ├── ConvertDoctrine1SchemaCommand.php │ │ │ ├── ConvertMappingCommand.php │ │ │ ├── EnsureProductionSettingsCommand.php │ │ │ ├── GenerateEntitiesCommand.php │ │ │ ├── GenerateProxiesCommand.php │ │ │ ├── GenerateRepositoriesCommand.php │ │ │ ├── InfoCommand.php │ │ │ ├── MappingDescribeCommand.php │ │ │ ├── RunDqlCommand.php │ │ │ ├── SchemaTool │ │ │ │ ├── AbstractCommand.php │ │ │ │ ├── CreateCommand.php │ │ │ │ ├── DropCommand.php │ │ │ │ └── UpdateCommand.php │ │ │ └── ValidateSchemaCommand.php │ │ ├── ConsoleRunner.php │ │ ├── Helper │ │ │ └── EntityManagerHelper.php │ │ └── MetadataFilter.php │ ├── ConvertDoctrine1Schema.php │ ├── DebugUnitOfWorkListener.php │ ├── DisconnectedClassMetadataFactory.php │ ├── EntityGenerator.php │ ├── EntityRepositoryGenerator.php │ ├── Event │ │ ├── GenerateSchemaEventArgs.php │ │ └── GenerateSchemaTableEventArgs.php │ ├── Export │ │ ├── ClassMetadataExporter.php │ │ ├── Driver │ │ │ ├── AbstractExporter.php │ │ │ ├── AnnotationExporter.php │ │ │ ├── PhpExporter.php │ │ │ ├── XmlExporter.php │ │ │ └── YamlExporter.php │ │ └── ExportException.php │ ├── Pagination │ │ ├── CountOutputWalker.php │ │ ├── CountWalker.php │ │ ├── LimitSubqueryOutputWalker.php │ │ ├── LimitSubqueryWalker.php │ │ ├── Paginator.php │ │ ├── RowNumberOverFunction.php │ │ └── WhereInWalker.php │ ├── ResolveTargetEntityListener.php │ ├── SchemaTool.php │ ├── SchemaValidator.php │ ├── Setup.php │ ├── ToolEvents.php │ └── ToolsException.php │ ├── TransactionRequiredException.php │ ├── UnexpectedResultException.php │ ├── UnitOfWork.php │ ├── Utility │ ├── IdentifierFlattener.php │ └── PersisterHelper.php │ └── Version.php └── symfony ├── console ├── .gitignore ├── Application.php ├── CHANGELOG.md ├── Command │ ├── Command.php │ ├── HelpCommand.php │ └── ListCommand.php ├── ConsoleEvents.php ├── Descriptor │ ├── ApplicationDescription.php │ ├── Descriptor.php │ ├── DescriptorInterface.php │ ├── JsonDescriptor.php │ ├── MarkdownDescriptor.php │ ├── TextDescriptor.php │ └── XmlDescriptor.php ├── Event │ ├── ConsoleCommandEvent.php │ ├── ConsoleEvent.php │ ├── ConsoleExceptionEvent.php │ └── ConsoleTerminateEvent.php ├── Exception │ ├── CommandNotFoundException.php │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ ├── InvalidOptionException.php │ ├── LogicException.php │ └── RuntimeException.php ├── Formatter │ ├── OutputFormatter.php │ ├── OutputFormatterInterface.php │ ├── OutputFormatterStyle.php │ ├── OutputFormatterStyleInterface.php │ └── OutputFormatterStyleStack.php ├── Helper │ ├── DebugFormatterHelper.php │ ├── DescriptorHelper.php │ ├── DialogHelper.php │ ├── FormatterHelper.php │ ├── Helper.php │ ├── HelperInterface.php │ ├── HelperSet.php │ ├── InputAwareHelper.php │ ├── ProcessHelper.php │ ├── ProgressBar.php │ ├── ProgressHelper.php │ ├── ProgressIndicator.php │ ├── QuestionHelper.php │ ├── SymfonyQuestionHelper.php │ ├── Table.php │ ├── TableCell.php │ ├── TableHelper.php │ ├── TableSeparator.php │ └── TableStyle.php ├── Input │ ├── ArgvInput.php │ ├── ArrayInput.php │ ├── Input.php │ ├── InputArgument.php │ ├── InputAwareInterface.php │ ├── InputDefinition.php │ ├── InputInterface.php │ ├── InputOption.php │ └── StringInput.php ├── LICENSE ├── Logger │ └── ConsoleLogger.php ├── Output │ ├── BufferedOutput.php │ ├── ConsoleOutput.php │ ├── ConsoleOutputInterface.php │ ├── NullOutput.php │ ├── Output.php │ ├── OutputInterface.php │ └── StreamOutput.php ├── Question │ ├── ChoiceQuestion.php │ ├── ConfirmationQuestion.php │ └── Question.php ├── README.md ├── Resources │ └── bin │ │ └── hiddeninput.exe ├── Shell.php ├── Style │ ├── OutputStyle.php │ ├── StyleInterface.php │ └── SymfonyStyle.php ├── Tester │ ├── ApplicationTester.php │ └── CommandTester.php ├── Tests │ ├── ApplicationTest.php │ ├── Command │ │ ├── CommandTest.php │ │ ├── HelpCommandTest.php │ │ └── ListCommandTest.php │ ├── Descriptor │ │ ├── AbstractDescriptorTest.php │ │ ├── JsonDescriptorTest.php │ │ ├── MarkdownDescriptorTest.php │ │ ├── ObjectsProvider.php │ │ ├── TextDescriptorTest.php │ │ └── XmlDescriptorTest.php │ ├── Fixtures │ │ ├── BarBucCommand.php │ │ ├── DescriptorApplication1.php │ │ ├── DescriptorApplication2.php │ │ ├── DescriptorCommand1.php │ │ ├── DescriptorCommand2.php │ │ ├── DummyOutput.php │ │ ├── Foo1Command.php │ │ ├── Foo2Command.php │ │ ├── Foo3Command.php │ │ ├── Foo4Command.php │ │ ├── Foo5Command.php │ │ ├── Foo6Command.php │ │ ├── FooCommand.php │ │ ├── FooSubnamespaced1Command.php │ │ ├── FooSubnamespaced2Command.php │ │ ├── FoobarCommand.php │ │ ├── Style │ │ │ └── SymfonyStyle │ │ │ │ ├── command │ │ │ │ ├── command_0.php │ │ │ │ ├── command_1.php │ │ │ │ ├── command_2.php │ │ │ │ ├── command_3.php │ │ │ │ ├── command_4.php │ │ │ │ ├── command_5.php │ │ │ │ ├── command_6.php │ │ │ │ └── command_7.php │ │ │ │ └── output │ │ │ │ ├── output_0.txt │ │ │ │ ├── output_1.txt │ │ │ │ ├── output_2.txt │ │ │ │ ├── output_3.txt │ │ │ │ ├── output_4.txt │ │ │ │ ├── output_5.txt │ │ │ │ ├── output_6.txt │ │ │ │ └── output_7.txt │ │ ├── TestCommand.php │ │ ├── application_1.json │ │ ├── application_1.md │ │ ├── application_1.txt │ │ ├── application_1.xml │ │ ├── application_2.json │ │ ├── application_2.md │ │ ├── application_2.txt │ │ ├── application_2.xml │ │ ├── application_astext1.txt │ │ ├── application_astext2.txt │ │ ├── application_asxml1.txt │ │ ├── application_asxml2.txt │ │ ├── application_gethelp.txt │ │ ├── application_renderexception1.txt │ │ ├── application_renderexception2.txt │ │ ├── application_renderexception3.txt │ │ ├── application_renderexception3decorated.txt │ │ ├── application_renderexception4.txt │ │ ├── application_renderexception_doublewidth1.txt │ │ ├── application_renderexception_doublewidth1decorated.txt │ │ ├── application_renderexception_doublewidth2.txt │ │ ├── application_run1.txt │ │ ├── application_run2.txt │ │ ├── application_run3.txt │ │ ├── application_run4.txt │ │ ├── command_1.json │ │ ├── command_1.md │ │ ├── command_1.txt │ │ ├── command_1.xml │ │ ├── command_2.json │ │ ├── command_2.md │ │ ├── command_2.txt │ │ ├── command_2.xml │ │ ├── command_astext.txt │ │ ├── command_asxml.txt │ │ ├── definition_astext.txt │ │ ├── definition_asxml.txt │ │ ├── input_argument_1.json │ │ ├── input_argument_1.md │ │ ├── input_argument_1.txt │ │ ├── input_argument_1.xml │ │ ├── input_argument_2.json │ │ ├── input_argument_2.md │ │ ├── input_argument_2.txt │ │ ├── input_argument_2.xml │ │ ├── input_argument_3.json │ │ ├── input_argument_3.md │ │ ├── input_argument_3.txt │ │ ├── input_argument_3.xml │ │ ├── input_argument_4.json │ │ ├── input_argument_4.md │ │ ├── input_argument_4.txt │ │ ├── input_argument_4.xml │ │ ├── input_definition_1.json │ │ ├── input_definition_1.md │ │ ├── input_definition_1.txt │ │ ├── input_definition_1.xml │ │ ├── input_definition_2.json │ │ ├── input_definition_2.md │ │ ├── input_definition_2.txt │ │ ├── input_definition_2.xml │ │ ├── input_definition_3.json │ │ ├── input_definition_3.md │ │ ├── input_definition_3.txt │ │ ├── input_definition_3.xml │ │ ├── input_definition_4.json │ │ ├── input_definition_4.md │ │ ├── input_definition_4.txt │ │ ├── input_definition_4.xml │ │ ├── input_option_1.json │ │ ├── input_option_1.md │ │ ├── input_option_1.txt │ │ ├── input_option_1.xml │ │ ├── input_option_2.json │ │ ├── input_option_2.md │ │ ├── input_option_2.txt │ │ ├── input_option_2.xml │ │ ├── input_option_3.json │ │ ├── input_option_3.md │ │ ├── input_option_3.txt │ │ ├── input_option_3.xml │ │ ├── input_option_4.json │ │ ├── input_option_4.md │ │ ├── input_option_4.txt │ │ ├── input_option_4.xml │ │ ├── input_option_5.json │ │ ├── input_option_5.md │ │ ├── input_option_5.txt │ │ ├── input_option_5.xml │ │ ├── input_option_6.json │ │ ├── input_option_6.md │ │ ├── input_option_6.txt │ │ └── input_option_6.xml │ ├── Formatter │ │ ├── OutputFormatterStyleStackTest.php │ │ ├── OutputFormatterStyleTest.php │ │ └── OutputFormatterTest.php │ ├── Helper │ │ ├── FormatterHelperTest.php │ │ ├── HelperSetTest.php │ │ ├── LegacyDialogHelperTest.php │ │ ├── LegacyProgressHelperTest.php │ │ ├── LegacyTableHelperTest.php │ │ ├── ProcessHelperTest.php │ │ ├── ProgressBarTest.php │ │ ├── ProgressIndicatorTest.php │ │ ├── QuestionHelperTest.php │ │ ├── TableStyleTest.php │ │ └── TableTest.php │ ├── Input │ │ ├── ArgvInputTest.php │ │ ├── ArrayInputTest.php │ │ ├── InputArgumentTest.php │ │ ├── InputDefinitionTest.php │ │ ├── InputOptionTest.php │ │ ├── InputTest.php │ │ └── StringInputTest.php │ ├── Logger │ │ └── ConsoleLoggerTest.php │ ├── Output │ │ ├── ConsoleOutputTest.php │ │ ├── NullOutputTest.php │ │ ├── OutputTest.php │ │ └── StreamOutputTest.php │ ├── Style │ │ └── SymfonyStyleTest.php │ └── Tester │ │ ├── ApplicationTesterTest.php │ │ └── CommandTesterTest.php ├── composer.json └── phpunit.xml.dist └── polyfill-mbstring ├── LICENSE ├── Mbstring.php ├── README.md ├── Resources └── unidata │ ├── lowerCase.ser │ └── upperCase.ser ├── bootstrap.php └── composer.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/README.md -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/.htaccess -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/cache/.htaccess -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/cache/index.html -------------------------------------------------------------------------------- /application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/config/autoload.php -------------------------------------------------------------------------------- /application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/config/config.php -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/config/constants.php -------------------------------------------------------------------------------- /application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/config/database.php -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/config/doctypes.php -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/config/foreign_chars.php -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/config/hooks.php -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/config/index.html -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/config/memcached.php -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/config/migration.php -------------------------------------------------------------------------------- /application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/config/mimes.php -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/config/profiler.php -------------------------------------------------------------------------------- /application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/config/routes.php -------------------------------------------------------------------------------- /application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/config/smileys.php -------------------------------------------------------------------------------- /application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/config/user_agents.php -------------------------------------------------------------------------------- /application/controllers/Welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/controllers/Welcome.php -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/controllers/index.html -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/core/index.html -------------------------------------------------------------------------------- /application/doctrine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/doctrine -------------------------------------------------------------------------------- /application/doctrine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/doctrine.php -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/helpers/index.html -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/hooks/index.html -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/index.html -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/language/english/index.html -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/language/index.html -------------------------------------------------------------------------------- /application/libraries/Doctrine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/libraries/Doctrine.php -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/libraries/index.html -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/logs/index.html -------------------------------------------------------------------------------- /application/models/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/models/Entity/User.php -------------------------------------------------------------------------------- /application/models/Entity/UserGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/models/Entity/UserGroup.php -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/models/index.html -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/third_party/index.html -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/views/errors/cli/error_404.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/views/errors/cli/error_db.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/views/errors/cli/error_exception.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/views/errors/cli/error_general.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/views/errors/cli/error_php.php -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/views/errors/cli/index.html -------------------------------------------------------------------------------- /application/views/errors/html/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/views/errors/html/error_404.php -------------------------------------------------------------------------------- /application/views/errors/html/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/views/errors/html/error_db.php -------------------------------------------------------------------------------- /application/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/views/errors/html/error_exception.php -------------------------------------------------------------------------------- /application/views/errors/html/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/views/errors/html/error_general.php -------------------------------------------------------------------------------- /application/views/errors/html/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/views/errors/html/error_php.php -------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/views/errors/html/index.html -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/views/errors/index.html -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/views/index.html -------------------------------------------------------------------------------- /application/views/welcome_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/application/views/welcome_message.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/composer.lock -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/index.php -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/license.txt -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/.htaccess -------------------------------------------------------------------------------- /system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/Benchmark.php -------------------------------------------------------------------------------- /system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/Common.php -------------------------------------------------------------------------------- /system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/Config.php -------------------------------------------------------------------------------- /system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/Controller.php -------------------------------------------------------------------------------- /system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/Exceptions.php -------------------------------------------------------------------------------- /system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/Hooks.php -------------------------------------------------------------------------------- /system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/Input.php -------------------------------------------------------------------------------- /system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/Lang.php -------------------------------------------------------------------------------- /system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/Loader.php -------------------------------------------------------------------------------- /system/core/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/Log.php -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/Model.php -------------------------------------------------------------------------------- /system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/Output.php -------------------------------------------------------------------------------- /system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/Router.php -------------------------------------------------------------------------------- /system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/Security.php -------------------------------------------------------------------------------- /system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/URI.php -------------------------------------------------------------------------------- /system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/Utf8.php -------------------------------------------------------------------------------- /system/core/compat/hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/compat/hash.php -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/compat/index.html -------------------------------------------------------------------------------- /system/core/compat/mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/compat/mbstring.php -------------------------------------------------------------------------------- /system/core/compat/password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/compat/password.php -------------------------------------------------------------------------------- /system/core/compat/standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/compat/standard.php -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/core/index.html -------------------------------------------------------------------------------- /system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/DB.php -------------------------------------------------------------------------------- /system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/DB_cache.php -------------------------------------------------------------------------------- /system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/DB_driver.php -------------------------------------------------------------------------------- /system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/DB_forge.php -------------------------------------------------------------------------------- /system/database/DB_query_builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/DB_query_builder.php -------------------------------------------------------------------------------- /system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/DB_result.php -------------------------------------------------------------------------------- /system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/DB_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/cubrid/cubrid_driver.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/cubrid/cubrid_forge.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/cubrid/cubrid_result.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/cubrid/cubrid_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/cubrid/index.html -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/ibase/ibase_driver.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/ibase/ibase_forge.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/ibase/ibase_result.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/ibase/ibase_utility.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/ibase/index.html -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/mssql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/mssql/mssql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/mssql/mssql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/mssql/mssql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/mssql/mssql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/mysql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/mysql/mysql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/mysql/mysql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/mysql/mysql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/mysql/mysql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/mysqli/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/mysqli/mysqli_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/mysqli/mysqli_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/mysqli/mysqli_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/mysqli/mysqli_utility.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/oci8/index.html -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/oci8/oci8_driver.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/oci8/oci8_forge.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/oci8/oci8_result.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/oci8/oci8_utility.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/odbc/index.html -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/odbc/odbc_driver.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/odbc/odbc_forge.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/odbc/odbc_result.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/odbc/odbc_utility.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/pdo/index.html -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/pdo/pdo_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/pdo/pdo_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/pdo/pdo_result.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/pdo/pdo_utility.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/pdo/subdrivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_4d_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/pdo/subdrivers/pdo_4d_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_4d_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_oci_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/pdo/subdrivers/pdo_oci_forge.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/postgre/index.html -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/postgre/postgre_driver.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/postgre/postgre_forge.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/postgre/postgre_result.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/postgre/postgre_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/sqlite/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/sqlite/sqlite_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/sqlite/sqlite_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/sqlite/sqlite_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/sqlite/sqlite_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/sqlite3/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/sqlite3/sqlite3_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/sqlite3/sqlite3_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/sqlite3/sqlite3_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/sqlite3/sqlite3_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/sqlsrv/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/sqlsrv/sqlsrv_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/sqlsrv/sqlsrv_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/sqlsrv/sqlsrv_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/drivers/sqlsrv/sqlsrv_utility.php -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/database/index.html -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/fonts/index.html -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/array_helper.php -------------------------------------------------------------------------------- /system/helpers/captcha_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/captcha_helper.php -------------------------------------------------------------------------------- /system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/date_helper.php -------------------------------------------------------------------------------- /system/helpers/directory_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/directory_helper.php -------------------------------------------------------------------------------- /system/helpers/download_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/download_helper.php -------------------------------------------------------------------------------- /system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/email_helper.php -------------------------------------------------------------------------------- /system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/file_helper.php -------------------------------------------------------------------------------- /system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/form_helper.php -------------------------------------------------------------------------------- /system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/html_helper.php -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/index.html -------------------------------------------------------------------------------- /system/helpers/inflector_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/inflector_helper.php -------------------------------------------------------------------------------- /system/helpers/language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/language_helper.php -------------------------------------------------------------------------------- /system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/number_helper.php -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/path_helper.php -------------------------------------------------------------------------------- /system/helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/security_helper.php -------------------------------------------------------------------------------- /system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/string_helper.php -------------------------------------------------------------------------------- /system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/text_helper.php -------------------------------------------------------------------------------- /system/helpers/typography_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/typography_helper.php -------------------------------------------------------------------------------- /system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/url_helper.php -------------------------------------------------------------------------------- /system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/index.html -------------------------------------------------------------------------------- /system/language/english/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/language/english/calendar_lang.php -------------------------------------------------------------------------------- /system/language/english/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/language/english/date_lang.php -------------------------------------------------------------------------------- /system/language/english/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/language/english/db_lang.php -------------------------------------------------------------------------------- /system/language/english/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/language/english/email_lang.php -------------------------------------------------------------------------------- /system/language/english/form_validation_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/language/english/form_validation_lang.php -------------------------------------------------------------------------------- /system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/language/english/ftp_lang.php -------------------------------------------------------------------------------- /system/language/english/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/language/english/imglib_lang.php -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/language/english/index.html -------------------------------------------------------------------------------- /system/language/english/migration_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/language/english/migration_lang.php -------------------------------------------------------------------------------- /system/language/english/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/language/english/number_lang.php -------------------------------------------------------------------------------- /system/language/english/pagination_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/language/english/pagination_lang.php -------------------------------------------------------------------------------- /system/language/english/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/language/english/profiler_lang.php -------------------------------------------------------------------------------- /system/language/english/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/language/english/unit_test_lang.php -------------------------------------------------------------------------------- /system/language/english/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/language/english/upload_lang.php -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/language/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Cache/Cache.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_apc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Cache/drivers/Cache_apc.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Cache/drivers/Cache_dummy.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Cache/drivers/Cache_file.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Cache/drivers/Cache_memcached.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Cache/drivers/Cache_redis.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_wincache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Cache/drivers/Cache_wincache.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Cache/drivers/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Cache/index.html -------------------------------------------------------------------------------- /system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Calendar.php -------------------------------------------------------------------------------- /system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Cart.php -------------------------------------------------------------------------------- /system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Driver.php -------------------------------------------------------------------------------- /system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Email.php -------------------------------------------------------------------------------- /system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /system/libraries/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Encryption.php -------------------------------------------------------------------------------- /system/libraries/Form_validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Form_validation.php -------------------------------------------------------------------------------- /system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Ftp.php -------------------------------------------------------------------------------- /system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /system/libraries/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Javascript.php -------------------------------------------------------------------------------- /system/libraries/Javascript/Jquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Javascript/Jquery.php -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Javascript/index.html -------------------------------------------------------------------------------- /system/libraries/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Migration.php -------------------------------------------------------------------------------- /system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Pagination.php -------------------------------------------------------------------------------- /system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Parser.php -------------------------------------------------------------------------------- /system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Profiler.php -------------------------------------------------------------------------------- /system/libraries/Session/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Session/Session.php -------------------------------------------------------------------------------- /system/libraries/Session/SessionHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Session/SessionHandlerInterface.php -------------------------------------------------------------------------------- /system/libraries/Session/Session_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Session/Session_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Session/drivers/index.html -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Session/index.html -------------------------------------------------------------------------------- /system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Table.php -------------------------------------------------------------------------------- /system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Trackback.php -------------------------------------------------------------------------------- /system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Typography.php -------------------------------------------------------------------------------- /system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Upload.php -------------------------------------------------------------------------------- /system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/User_agent.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/Zip.php -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/system/libraries/index.html -------------------------------------------------------------------------------- /user_guide/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/.buildinfo -------------------------------------------------------------------------------- /user_guide/DCO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/DCO.html -------------------------------------------------------------------------------- /user_guide/_downloads/ELDocs.tmbundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_downloads/ELDocs.tmbundle.zip -------------------------------------------------------------------------------- /user_guide/_images/appflowchart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_images/appflowchart.gif -------------------------------------------------------------------------------- /user_guide/_images/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_images/smile.gif -------------------------------------------------------------------------------- /user_guide/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/ajax-loader.gif -------------------------------------------------------------------------------- /user_guide/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/basic.css -------------------------------------------------------------------------------- /user_guide/_static/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/ci-icon.ico -------------------------------------------------------------------------------- /user_guide/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/comment-bright.png -------------------------------------------------------------------------------- /user_guide/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/comment-close.png -------------------------------------------------------------------------------- /user_guide/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/comment.png -------------------------------------------------------------------------------- /user_guide/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/css/badge_only.css -------------------------------------------------------------------------------- /user_guide/_static/css/citheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/css/citheme.css -------------------------------------------------------------------------------- /user_guide/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/css/theme.css -------------------------------------------------------------------------------- /user_guide/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/doctools.js -------------------------------------------------------------------------------- /user_guide/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/down-pressed.png -------------------------------------------------------------------------------- /user_guide/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/down.png -------------------------------------------------------------------------------- /user_guide/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/file.png -------------------------------------------------------------------------------- /user_guide/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /user_guide/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/jquery.js -------------------------------------------------------------------------------- /user_guide/_static/js/oldtheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/js/oldtheme.js -------------------------------------------------------------------------------- /user_guide/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/js/theme.js -------------------------------------------------------------------------------- /user_guide/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/minus.png -------------------------------------------------------------------------------- /user_guide/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/plus.png -------------------------------------------------------------------------------- /user_guide/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/pygments.css -------------------------------------------------------------------------------- /user_guide/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/searchtools.js -------------------------------------------------------------------------------- /user_guide/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/underscore.js -------------------------------------------------------------------------------- /user_guide/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/up-pressed.png -------------------------------------------------------------------------------- /user_guide/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/up.png -------------------------------------------------------------------------------- /user_guide/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/_static/websupport.js -------------------------------------------------------------------------------- /user_guide/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/changelog.html -------------------------------------------------------------------------------- /user_guide/contributing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/contributing/index.html -------------------------------------------------------------------------------- /user_guide/database/caching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/database/caching.html -------------------------------------------------------------------------------- /user_guide/database/call_function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/database/call_function.html -------------------------------------------------------------------------------- /user_guide/database/configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/database/configuration.html -------------------------------------------------------------------------------- /user_guide/database/connecting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/database/connecting.html -------------------------------------------------------------------------------- /user_guide/database/db_driver_reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/database/db_driver_reference.html -------------------------------------------------------------------------------- /user_guide/database/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/database/examples.html -------------------------------------------------------------------------------- /user_guide/database/forge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/database/forge.html -------------------------------------------------------------------------------- /user_guide/database/helpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/database/helpers.html -------------------------------------------------------------------------------- /user_guide/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/database/index.html -------------------------------------------------------------------------------- /user_guide/database/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/database/metadata.html -------------------------------------------------------------------------------- /user_guide/database/queries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/database/queries.html -------------------------------------------------------------------------------- /user_guide/database/query_builder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/database/query_builder.html -------------------------------------------------------------------------------- /user_guide/database/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/database/results.html -------------------------------------------------------------------------------- /user_guide/database/transactions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/database/transactions.html -------------------------------------------------------------------------------- /user_guide/database/utilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/database/utilities.html -------------------------------------------------------------------------------- /user_guide/documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/documentation/index.html -------------------------------------------------------------------------------- /user_guide/general/alternative_php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/alternative_php.html -------------------------------------------------------------------------------- /user_guide/general/ancillary_classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/ancillary_classes.html -------------------------------------------------------------------------------- /user_guide/general/autoloader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/autoloader.html -------------------------------------------------------------------------------- /user_guide/general/caching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/caching.html -------------------------------------------------------------------------------- /user_guide/general/cli.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/cli.html -------------------------------------------------------------------------------- /user_guide/general/common_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/common_functions.html -------------------------------------------------------------------------------- /user_guide/general/compatibility_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/compatibility_functions.html -------------------------------------------------------------------------------- /user_guide/general/controllers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/controllers.html -------------------------------------------------------------------------------- /user_guide/general/core_classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/core_classes.html -------------------------------------------------------------------------------- /user_guide/general/creating_drivers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/creating_drivers.html -------------------------------------------------------------------------------- /user_guide/general/creating_libraries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/creating_libraries.html -------------------------------------------------------------------------------- /user_guide/general/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/credits.html -------------------------------------------------------------------------------- /user_guide/general/drivers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/drivers.html -------------------------------------------------------------------------------- /user_guide/general/environments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/environments.html -------------------------------------------------------------------------------- /user_guide/general/errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/errors.html -------------------------------------------------------------------------------- /user_guide/general/helpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/helpers.html -------------------------------------------------------------------------------- /user_guide/general/hooks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/hooks.html -------------------------------------------------------------------------------- /user_guide/general/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/index.html -------------------------------------------------------------------------------- /user_guide/general/libraries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/libraries.html -------------------------------------------------------------------------------- /user_guide/general/managing_apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/managing_apps.html -------------------------------------------------------------------------------- /user_guide/general/models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/models.html -------------------------------------------------------------------------------- /user_guide/general/profiling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/profiling.html -------------------------------------------------------------------------------- /user_guide/general/requirements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/requirements.html -------------------------------------------------------------------------------- /user_guide/general/reserved_names.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/reserved_names.html -------------------------------------------------------------------------------- /user_guide/general/routing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/routing.html -------------------------------------------------------------------------------- /user_guide/general/security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/security.html -------------------------------------------------------------------------------- /user_guide/general/styleguide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/styleguide.html -------------------------------------------------------------------------------- /user_guide/general/urls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/urls.html -------------------------------------------------------------------------------- /user_guide/general/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/views.html -------------------------------------------------------------------------------- /user_guide/general/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/general/welcome.html -------------------------------------------------------------------------------- /user_guide/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/genindex.html -------------------------------------------------------------------------------- /user_guide/helpers/array_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/array_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/captcha_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/captcha_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/cookie_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/cookie_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/date_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/date_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/directory_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/directory_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/download_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/download_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/email_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/email_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/file_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/file_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/form_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/form_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/html_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/html_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/index.html -------------------------------------------------------------------------------- /user_guide/helpers/inflector_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/inflector_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/language_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/language_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/number_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/number_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/path_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/path_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/security_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/security_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/smiley_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/smiley_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/string_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/string_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/text_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/text_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/typography_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/typography_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/url_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/url_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/xml_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/helpers/xml_helper.html -------------------------------------------------------------------------------- /user_guide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/index.html -------------------------------------------------------------------------------- /user_guide/installation/downloads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/downloads.html -------------------------------------------------------------------------------- /user_guide/installation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/index.html -------------------------------------------------------------------------------- /user_guide/installation/troubleshooting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/troubleshooting.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_120.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_120.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_130.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_130.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_131.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_131.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_132.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_132.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_133.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_133.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_140.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_140.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_141.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_141.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_150.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_150.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_152.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_152.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_153.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_153.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_154.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_154.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_160.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_160.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_161.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_161.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_162.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_162.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_163.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_163.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_170.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_170.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_171.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_171.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_172.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_172.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_200.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_200.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_201.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_201.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_202.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_202.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_203.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_203.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_210.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_210.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_211.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_211.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_212.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_212.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_213.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_213.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_214.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_214.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_220.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_220.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_221.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_221.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_222.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_222.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_223.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_223.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_300.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_300.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_301.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_301.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_302.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_302.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_303.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_303.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_304.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_304.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_305.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_305.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_306.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_306.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_b11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrade_b11.html -------------------------------------------------------------------------------- /user_guide/installation/upgrading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/installation/upgrading.html -------------------------------------------------------------------------------- /user_guide/libraries/benchmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/benchmark.html -------------------------------------------------------------------------------- /user_guide/libraries/caching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/caching.html -------------------------------------------------------------------------------- /user_guide/libraries/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/calendar.html -------------------------------------------------------------------------------- /user_guide/libraries/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/cart.html -------------------------------------------------------------------------------- /user_guide/libraries/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/config.html -------------------------------------------------------------------------------- /user_guide/libraries/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/email.html -------------------------------------------------------------------------------- /user_guide/libraries/encrypt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/encrypt.html -------------------------------------------------------------------------------- /user_guide/libraries/encryption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/encryption.html -------------------------------------------------------------------------------- /user_guide/libraries/file_uploading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/file_uploading.html -------------------------------------------------------------------------------- /user_guide/libraries/form_validation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/form_validation.html -------------------------------------------------------------------------------- /user_guide/libraries/ftp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/ftp.html -------------------------------------------------------------------------------- /user_guide/libraries/image_lib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/image_lib.html -------------------------------------------------------------------------------- /user_guide/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/index.html -------------------------------------------------------------------------------- /user_guide/libraries/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/input.html -------------------------------------------------------------------------------- /user_guide/libraries/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/javascript.html -------------------------------------------------------------------------------- /user_guide/libraries/language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/language.html -------------------------------------------------------------------------------- /user_guide/libraries/loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/loader.html -------------------------------------------------------------------------------- /user_guide/libraries/migration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/migration.html -------------------------------------------------------------------------------- /user_guide/libraries/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/output.html -------------------------------------------------------------------------------- /user_guide/libraries/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/pagination.html -------------------------------------------------------------------------------- /user_guide/libraries/parser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/parser.html -------------------------------------------------------------------------------- /user_guide/libraries/security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/security.html -------------------------------------------------------------------------------- /user_guide/libraries/sessions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/sessions.html -------------------------------------------------------------------------------- /user_guide/libraries/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/table.html -------------------------------------------------------------------------------- /user_guide/libraries/trackback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/trackback.html -------------------------------------------------------------------------------- /user_guide/libraries/typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/typography.html -------------------------------------------------------------------------------- /user_guide/libraries/unit_testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/unit_testing.html -------------------------------------------------------------------------------- /user_guide/libraries/uri.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/uri.html -------------------------------------------------------------------------------- /user_guide/libraries/user_agent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/user_agent.html -------------------------------------------------------------------------------- /user_guide/libraries/xmlrpc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/xmlrpc.html -------------------------------------------------------------------------------- /user_guide/libraries/zip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/libraries/zip.html -------------------------------------------------------------------------------- /user_guide/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/license.html -------------------------------------------------------------------------------- /user_guide/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/objects.inv -------------------------------------------------------------------------------- /user_guide/overview/appflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/overview/appflow.html -------------------------------------------------------------------------------- /user_guide/overview/at_a_glance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/overview/at_a_glance.html -------------------------------------------------------------------------------- /user_guide/overview/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/overview/features.html -------------------------------------------------------------------------------- /user_guide/overview/getting_started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/overview/getting_started.html -------------------------------------------------------------------------------- /user_guide/overview/goals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/overview/goals.html -------------------------------------------------------------------------------- /user_guide/overview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/overview/index.html -------------------------------------------------------------------------------- /user_guide/overview/mvc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/overview/mvc.html -------------------------------------------------------------------------------- /user_guide/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/search.html -------------------------------------------------------------------------------- /user_guide/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/searchindex.js -------------------------------------------------------------------------------- /user_guide/tutorial/conclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/tutorial/conclusion.html -------------------------------------------------------------------------------- /user_guide/tutorial/create_news_items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/tutorial/create_news_items.html -------------------------------------------------------------------------------- /user_guide/tutorial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/tutorial/index.html -------------------------------------------------------------------------------- /user_guide/tutorial/news_section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/tutorial/news_section.html -------------------------------------------------------------------------------- /user_guide/tutorial/static_pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/user_guide/tutorial/static_pages.html -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/bin/doctrine: -------------------------------------------------------------------------------- 1 | ../doctrine/orm/bin/doctrine -------------------------------------------------------------------------------- /vendor/bin/doctrine-dbal: -------------------------------------------------------------------------------- 1 | ../doctrine/dbal/bin/doctrine-dbal -------------------------------------------------------------------------------- /vendor/bin/doctrine.php: -------------------------------------------------------------------------------- 1 | ../doctrine/orm/bin/doctrine.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/doctrine/annotations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/annotations/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/annotations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/annotations/README.md -------------------------------------------------------------------------------- /vendor/doctrine/annotations/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/annotations/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/cache/.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/cache/.coveralls.yml -------------------------------------------------------------------------------- /vendor/doctrine/cache/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | build/ 3 | phpunit.xml 4 | composer.lock -------------------------------------------------------------------------------- /vendor/doctrine/cache/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/cache/.travis.yml -------------------------------------------------------------------------------- /vendor/doctrine/cache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/cache/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/cache/README.md -------------------------------------------------------------------------------- /vendor/doctrine/cache/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/cache/UPGRADE.md -------------------------------------------------------------------------------- /vendor/doctrine/cache/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/cache/build.properties -------------------------------------------------------------------------------- /vendor/doctrine/cache/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/cache/build.xml -------------------------------------------------------------------------------- /vendor/doctrine/cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/cache/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/cache/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/cache/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/doctrine/cache/tests/travis/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/cache/tests/travis/php.ini -------------------------------------------------------------------------------- /vendor/doctrine/cache/tests/travis/phpunit.travis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/cache/tests/travis/phpunit.travis.xml -------------------------------------------------------------------------------- /vendor/doctrine/collections/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /vendor/doctrine/collections/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/collections/.travis.yml -------------------------------------------------------------------------------- /vendor/doctrine/collections/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/collections/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/collections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/collections/README.md -------------------------------------------------------------------------------- /vendor/doctrine/collections/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/collections/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/collections/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/collections/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/doctrine/common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/common/.gitignore -------------------------------------------------------------------------------- /vendor/doctrine/common/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/common/.gitmodules -------------------------------------------------------------------------------- /vendor/doctrine/common/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/common/.travis.yml -------------------------------------------------------------------------------- /vendor/doctrine/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/common/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/common/README.md -------------------------------------------------------------------------------- /vendor/doctrine/common/UPGRADE_TO_2_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/common/UPGRADE_TO_2_1 -------------------------------------------------------------------------------- /vendor/doctrine/common/UPGRADE_TO_2_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/common/UPGRADE_TO_2_2 -------------------------------------------------------------------------------- /vendor/doctrine/common/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/common/build.properties -------------------------------------------------------------------------------- /vendor/doctrine/common/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/common/build.xml -------------------------------------------------------------------------------- /vendor/doctrine/common/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/common/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/common/lib/Doctrine/Common/EventArgs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/common/lib/Doctrine/Common/EventArgs.php -------------------------------------------------------------------------------- /vendor/doctrine/common/lib/Doctrine/Common/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/common/lib/Doctrine/Common/Lexer.php -------------------------------------------------------------------------------- /vendor/doctrine/common/lib/Doctrine/Common/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/common/lib/Doctrine/Common/Version.php -------------------------------------------------------------------------------- /vendor/doctrine/common/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/common/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/doctrine/common/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/common/tests/.gitignore -------------------------------------------------------------------------------- /vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/EmptyFile.class.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/TraitA.class.php: -------------------------------------------------------------------------------- 1 | getFieldNames(); -------------------------------------------------------------------------------- /vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/_files/global.yml: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/_files/stdClass.yml: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/_match_ns/Bar/barEntity.yml: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/_match_ns/testEntity.yml: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /vendor/doctrine/common/tests/Doctrine/Tests/TestInit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/common/tests/Doctrine/Tests/TestInit.php -------------------------------------------------------------------------------- /vendor/doctrine/common/tests/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/common/tests/README.markdown -------------------------------------------------------------------------------- /vendor/doctrine/dbal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/dbal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/README.md -------------------------------------------------------------------------------- /vendor/doctrine/dbal/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/SECURITY.md -------------------------------------------------------------------------------- /vendor/doctrine/dbal/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/UPGRADE.md -------------------------------------------------------------------------------- /vendor/doctrine/dbal/bin/doctrine-dbal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/bin/doctrine-dbal -------------------------------------------------------------------------------- /vendor/doctrine/dbal/bin/doctrine-dbal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/bin/doctrine-dbal.php -------------------------------------------------------------------------------- /vendor/doctrine/dbal/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/dbal/lib/Doctrine/DBAL/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/lib/Doctrine/DBAL/Configuration.php -------------------------------------------------------------------------------- /vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php -------------------------------------------------------------------------------- /vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php -------------------------------------------------------------------------------- /vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver.php -------------------------------------------------------------------------------- /vendor/doctrine/dbal/lib/Doctrine/DBAL/DriverManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/lib/Doctrine/DBAL/DriverManager.php -------------------------------------------------------------------------------- /vendor/doctrine/dbal/lib/Doctrine/DBAL/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/lib/Doctrine/DBAL/Events.php -------------------------------------------------------------------------------- /vendor/doctrine/dbal/lib/Doctrine/DBAL/LockMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/lib/Doctrine/DBAL/LockMode.php -------------------------------------------------------------------------------- /vendor/doctrine/dbal/lib/Doctrine/DBAL/README.markdown: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Column.php -------------------------------------------------------------------------------- /vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Index.php -------------------------------------------------------------------------------- /vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Schema.php -------------------------------------------------------------------------------- /vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Table.php -------------------------------------------------------------------------------- /vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/View.php -------------------------------------------------------------------------------- /vendor/doctrine/dbal/lib/Doctrine/DBAL/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/lib/Doctrine/DBAL/Statement.php -------------------------------------------------------------------------------- /vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/lib/Doctrine/DBAL/Types/Type.php -------------------------------------------------------------------------------- /vendor/doctrine/dbal/lib/Doctrine/DBAL/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/dbal/lib/Doctrine/DBAL/Version.php -------------------------------------------------------------------------------- /vendor/doctrine/inflector/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/inflector/.gitignore -------------------------------------------------------------------------------- /vendor/doctrine/inflector/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/inflector/.travis.yml -------------------------------------------------------------------------------- /vendor/doctrine/inflector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/inflector/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/inflector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/inflector/README.md -------------------------------------------------------------------------------- /vendor/doctrine/inflector/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/inflector/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/inflector/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/inflector/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/instantiator/.gitignore -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/instantiator/.scrutinizer.yml -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/.travis.install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/instantiator/.travis.install.sh -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/instantiator/.travis.yml -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/instantiator/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/instantiator/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/instantiator/README.md -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/instantiator/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/phpmd.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/instantiator/phpmd.xml.dist -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/instantiator/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/doctrine/lexer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/lexer/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/lexer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/lexer/README.md -------------------------------------------------------------------------------- /vendor/doctrine/lexer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/lexer/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/orm/.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/.coveralls.yml -------------------------------------------------------------------------------- /vendor/doctrine/orm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/orm/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/README.markdown -------------------------------------------------------------------------------- /vendor/doctrine/orm/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/SECURITY.md -------------------------------------------------------------------------------- /vendor/doctrine/orm/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/UPGRADE.md -------------------------------------------------------------------------------- /vendor/doctrine/orm/bin/doctrine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/bin/doctrine -------------------------------------------------------------------------------- /vendor/doctrine/orm/bin/doctrine-pear.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/bin/doctrine-pear.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/bin/doctrine.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/bin/doctrine.bat -------------------------------------------------------------------------------- /vendor/doctrine/orm/bin/doctrine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/bin/doctrine.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/LICENSE.md -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/README.md -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/bin/generate-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/bin/generate-docs.sh -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/bin/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/bin/install-dependencies.sh -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/Makefile -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/_exts/configurationblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/_exts/configurationblock.py -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/changelog/migration_2_5.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/changelog/migration_2_5.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/conf.py -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/cookbook/mysql-enums.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/cookbook/mysql-enums.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/index.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/make.bat -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/reference/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/reference/architecture.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/reference/basic-mapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/reference/basic-mapping.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/reference/best-practices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/reference/best-practices.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/reference/caching.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/reference/caching.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/reference/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/reference/configuration.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/reference/events.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/reference/events.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/reference/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/reference/faq.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/reference/filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/reference/filters.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/reference/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/reference/installation.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/reference/namingstrategy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/reference/namingstrategy.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/reference/native-sql.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/reference/native-sql.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/reference/php-mapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/reference/php-mapping.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/reference/query-builder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/reference/query-builder.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/reference/security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/reference/security.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/reference/tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/reference/tools.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/reference/unitofwork.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/reference/unitofwork.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/reference/xml-mapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/reference/xml-mapping.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/reference/yaml-mapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/reference/yaml-mapping.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/toc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/toc.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/tutorials/embeddables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/tutorials/embeddables.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/en/tutorials/pagination.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/docs/en/tutorials/pagination.rst -------------------------------------------------------------------------------- /vendor/doctrine/orm/doctrine-mapping.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/doctrine-mapping.xsd -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Cache.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Cache/CacheKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Cache/CacheKey.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Cache/Lock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Cache/Lock.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Cache/Region.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Cache/Region.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Configuration.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Events.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Cache.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Column.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Entity.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Id.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Index.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/OrderBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/OrderBy.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Table.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Version.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/NativeQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/NativeQuery.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/ORMException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/ORMException.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Proxy/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Proxy/Proxy.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Query.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Query/AST/Join.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Query/AST/Join.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Query/AST/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Query/AST/Node.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Andx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Andx.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Base.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr/From.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr/From.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Func.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Join.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Join.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Math.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Orx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Expr/Orx.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Query/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Lexer.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parameter.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Query/Printer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Query/Printer.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/QueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/QueryBuilder.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/README.markdown: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Tools/Setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Tools/Setup.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php -------------------------------------------------------------------------------- /vendor/doctrine/orm/lib/Doctrine/ORM/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/doctrine/orm/lib/Doctrine/ORM/Version.php -------------------------------------------------------------------------------- /vendor/symfony/console/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Application.php -------------------------------------------------------------------------------- /vendor/symfony/console/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/symfony/console/Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Command/Command.php -------------------------------------------------------------------------------- /vendor/symfony/console/Command/HelpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Command/HelpCommand.php -------------------------------------------------------------------------------- /vendor/symfony/console/Command/ListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Command/ListCommand.php -------------------------------------------------------------------------------- /vendor/symfony/console/ConsoleEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/ConsoleEvents.php -------------------------------------------------------------------------------- /vendor/symfony/console/Descriptor/Descriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Descriptor/Descriptor.php -------------------------------------------------------------------------------- /vendor/symfony/console/Descriptor/JsonDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Descriptor/JsonDescriptor.php -------------------------------------------------------------------------------- /vendor/symfony/console/Descriptor/MarkdownDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Descriptor/MarkdownDescriptor.php -------------------------------------------------------------------------------- /vendor/symfony/console/Descriptor/TextDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Descriptor/TextDescriptor.php -------------------------------------------------------------------------------- /vendor/symfony/console/Descriptor/XmlDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Descriptor/XmlDescriptor.php -------------------------------------------------------------------------------- /vendor/symfony/console/Event/ConsoleCommandEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Event/ConsoleCommandEvent.php -------------------------------------------------------------------------------- /vendor/symfony/console/Event/ConsoleEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Event/ConsoleEvent.php -------------------------------------------------------------------------------- /vendor/symfony/console/Event/ConsoleExceptionEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Event/ConsoleExceptionEvent.php -------------------------------------------------------------------------------- /vendor/symfony/console/Event/ConsoleTerminateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Event/ConsoleTerminateEvent.php -------------------------------------------------------------------------------- /vendor/symfony/console/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /vendor/symfony/console/Exception/LogicException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Exception/LogicException.php -------------------------------------------------------------------------------- /vendor/symfony/console/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Exception/RuntimeException.php -------------------------------------------------------------------------------- /vendor/symfony/console/Formatter/OutputFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Formatter/OutputFormatter.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/DebugFormatterHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Helper/DebugFormatterHelper.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/DescriptorHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Helper/DescriptorHelper.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/DialogHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Helper/DialogHelper.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/FormatterHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Helper/FormatterHelper.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Helper/Helper.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/HelperInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Helper/HelperInterface.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/HelperSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Helper/HelperSet.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/InputAwareHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Helper/InputAwareHelper.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/ProcessHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Helper/ProcessHelper.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/ProgressBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Helper/ProgressBar.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/ProgressHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Helper/ProgressHelper.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/ProgressIndicator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Helper/ProgressIndicator.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/QuestionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Helper/QuestionHelper.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/SymfonyQuestionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Helper/SymfonyQuestionHelper.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Helper/Table.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/TableCell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Helper/TableCell.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/TableHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Helper/TableHelper.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/TableSeparator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Helper/TableSeparator.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/TableStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Helper/TableStyle.php -------------------------------------------------------------------------------- /vendor/symfony/console/Input/ArgvInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Input/ArgvInput.php -------------------------------------------------------------------------------- /vendor/symfony/console/Input/ArrayInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Input/ArrayInput.php -------------------------------------------------------------------------------- /vendor/symfony/console/Input/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Input/Input.php -------------------------------------------------------------------------------- /vendor/symfony/console/Input/InputArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Input/InputArgument.php -------------------------------------------------------------------------------- /vendor/symfony/console/Input/InputAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Input/InputAwareInterface.php -------------------------------------------------------------------------------- /vendor/symfony/console/Input/InputDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Input/InputDefinition.php -------------------------------------------------------------------------------- /vendor/symfony/console/Input/InputInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Input/InputInterface.php -------------------------------------------------------------------------------- /vendor/symfony/console/Input/InputOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Input/InputOption.php -------------------------------------------------------------------------------- /vendor/symfony/console/Input/StringInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Input/StringInput.php -------------------------------------------------------------------------------- /vendor/symfony/console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/console/Logger/ConsoleLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Logger/ConsoleLogger.php -------------------------------------------------------------------------------- /vendor/symfony/console/Output/BufferedOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Output/BufferedOutput.php -------------------------------------------------------------------------------- /vendor/symfony/console/Output/ConsoleOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Output/ConsoleOutput.php -------------------------------------------------------------------------------- /vendor/symfony/console/Output/ConsoleOutputInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Output/ConsoleOutputInterface.php -------------------------------------------------------------------------------- /vendor/symfony/console/Output/NullOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Output/NullOutput.php -------------------------------------------------------------------------------- /vendor/symfony/console/Output/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Output/Output.php -------------------------------------------------------------------------------- /vendor/symfony/console/Output/OutputInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Output/OutputInterface.php -------------------------------------------------------------------------------- /vendor/symfony/console/Output/StreamOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Output/StreamOutput.php -------------------------------------------------------------------------------- /vendor/symfony/console/Question/ChoiceQuestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Question/ChoiceQuestion.php -------------------------------------------------------------------------------- /vendor/symfony/console/Question/ConfirmationQuestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Question/ConfirmationQuestion.php -------------------------------------------------------------------------------- /vendor/symfony/console/Question/Question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Question/Question.php -------------------------------------------------------------------------------- /vendor/symfony/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/README.md -------------------------------------------------------------------------------- /vendor/symfony/console/Resources/bin/hiddeninput.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Resources/bin/hiddeninput.exe -------------------------------------------------------------------------------- /vendor/symfony/console/Shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Shell.php -------------------------------------------------------------------------------- /vendor/symfony/console/Style/OutputStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Style/OutputStyle.php -------------------------------------------------------------------------------- /vendor/symfony/console/Style/StyleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Style/StyleInterface.php -------------------------------------------------------------------------------- /vendor/symfony/console/Style/SymfonyStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Style/SymfonyStyle.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tester/ApplicationTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tester/ApplicationTester.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tester/CommandTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tester/CommandTester.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/ApplicationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/ApplicationTest.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Command/CommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Command/CommandTest.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Command/HelpCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Command/HelpCommandTest.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Command/ListCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Command/ListCommandTest.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/BarBucCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/DummyOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/DummyOutput.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Foo1Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/Foo1Command.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Foo2Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/Foo2Command.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Foo3Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/Foo3Command.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Foo4Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/Foo4Command.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Foo5Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/Foo5Command.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Foo6Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/Foo6Command.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/FooCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/FooCommand.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/FoobarCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/FoobarCommand.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/TestCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/TestCommand.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/application_1.json -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/application_1.md -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/application_1.txt -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/application_1.xml -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/application_2.json -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/application_2.md -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/application_2.txt -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/application_2.xml -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_run4.txt: -------------------------------------------------------------------------------- 1 | Console Tool 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/command_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/command_1.json -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/command_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/command_1.md -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/command_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/command_1.txt -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/command_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/command_1.xml -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/command_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/command_2.json -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/command_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/command_2.md -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/command_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/command_2.txt -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/command_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/command_2.xml -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/command_astext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/command_astext.txt -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/command_asxml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/command_asxml.txt -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/input_option_1.md -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/input_option_1.txt -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/input_option_1.xml -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/input_option_2.md -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/input_option_2.txt -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/input_option_2.xml -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/input_option_3.md -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/input_option_3.txt -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/input_option_3.xml -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/input_option_4.md -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/input_option_4.txt -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Fixtures/input_option_4.xml -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Helper/HelperSetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Helper/HelperSetTest.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Helper/TableStyleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Helper/TableStyleTest.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Helper/TableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Helper/TableTest.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Input/ArgvInputTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Input/ArgvInputTest.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Input/ArrayInputTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Input/ArrayInputTest.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Input/InputOptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Input/InputOptionTest.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Input/InputTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Input/InputTest.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Input/StringInputTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Input/StringInputTest.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Output/NullOutputTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Output/NullOutputTest.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Output/OutputTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/Tests/Output/OutputTest.php -------------------------------------------------------------------------------- /vendor/symfony/console/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/composer.json -------------------------------------------------------------------------------- /vendor/symfony/console/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/console/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/polyfill-mbstring/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/Mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/polyfill-mbstring/Mbstring.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/polyfill-mbstring/README.md -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/polyfill-mbstring/bootstrap.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildlyinaccurate/CodeIgniter-with-Doctrine-2/HEAD/vendor/symfony/polyfill-mbstring/composer.json --------------------------------------------------------------------------------