From 0ef53ea7b51297dec8561952e00217e3c0bf28e9 Mon Sep 17 00:00:00 2001 From: Rajitha Kumara Date: Tue, 14 Jul 2020 09:24:23 +0530 Subject: [PATCH 1/5] Specify db connection charset as utf8mb4 --- config/databases-sample.yml | 2 +- data/localizit.sql | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/config/databases-sample.yml b/config/databases-sample.yml index 538f281..a56aa8e 100644 --- a/config/databases-sample.yml +++ b/config/databases-sample.yml @@ -5,7 +5,7 @@ all: doctrine: class: sfDoctrineDatabase param: - dsn: mysql:host=;dbname= + dsn: 'mysql:host=;dbname=;charset=utf8mb4' username: password: test: diff --git a/data/localizit.sql b/data/localizit.sql index 60a1e9e..8ef1c23 100755 --- a/data/localizit.sql +++ b/data/localizit.sql @@ -29,7 +29,7 @@ CREATE TABLE IF NOT EXISTS `ohrm_group` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=8 ; -- -- Dumping data for table `ohrm_group` @@ -57,7 +57,7 @@ CREATE TABLE IF NOT EXISTS `ohrm_language` ( `name` varchar(255) DEFAULT NULL, `code` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=3 ; -- -- Dumping data for table `ohrm_language` @@ -107,7 +107,7 @@ CREATE TABLE IF NOT EXISTS `ohrm_source` ( `note` text, PRIMARY KEY (`id`), KEY `group_id_idx` (`group_id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -- Dumping data for table `ohrm_source` @@ -129,7 +129,7 @@ CREATE TABLE IF NOT EXISTS `ohrm_target` ( PRIMARY KEY (`id`), KEY `source_id_idx` (`source_id`), KEY `language_id_idx` (`language_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci AUTO_INCREMENT=1 ; -- -- Dumping data for table `ohrm_target` @@ -152,7 +152,7 @@ CREATE TABLE IF NOT EXISTS `ohrm_user` ( `password` varchar(250) DEFAULT NULL, PRIMARY KEY (`id`), KEY `user_type_id_idx` (`user_type_id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=4 ; -- -- Dumping data for table `ohrm_user` @@ -175,7 +175,7 @@ CREATE TABLE IF NOT EXISTS `ohrm_user_language` ( PRIMARY KEY (`id`), KEY `language_id_idx` (`language_id`), KEY `user_id_idx` (`user_id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -- Dumping data for table `ohrm_user_language` @@ -192,7 +192,7 @@ CREATE TABLE IF NOT EXISTS `ohrm_user_type` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_type` varchar(25) NOT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=3 ; -- -- Dumping data for table `ohrm_user_type` From be9a55956c105176140f48315c173ae0466aaf89 Mon Sep 17 00:00:00 2001 From: Rajitha Kumara Date: Tue, 14 Jul 2020 11:18:01 +0530 Subject: [PATCH 2/5] Attempting to solve empty response header name, aborting request --- apps/localizit/config/view.yml | 4 ++-- apps/localizit/templates/layout.php | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/apps/localizit/config/view.yml b/apps/localizit/config/view.yml index d695db1..93ce94a 100644 --- a/apps/localizit/config/view.yml +++ b/apps/localizit/config/view.yml @@ -2,8 +2,8 @@ # http://www.symfony-project.org/reference/1_4/en/13-View default: - http_metas: - content-type: text/html + # http_metas: + # content-type: text/html metas: title: Orange - Localizit diff --git a/apps/localizit/templates/layout.php b/apps/localizit/templates/layout.php index db19cf9..55e4289 100644 --- a/apps/localizit/templates/layout.php +++ b/apps/localizit/templates/layout.php @@ -1,8 +1,7 @@ - - + From 1819f4b9fca5330632d6a488e2eb60700550d474 Mon Sep 17 00:00:00 2001 From: Rajitha Kumara Date: Tue, 14 Jul 2020 11:51:06 +0530 Subject: [PATCH 3/5] Update symfony lib --- config/ProjectConfiguration.class.php | 3 +- lib/composer.json | 29 + lib/composer.lock | 351 ++ lib/model/Doctrine.php | 11 + lib/vendor/autoload.php | 7 + lib/vendor/bin/symfony | 1 + lib/vendor/composer/ClassLoader.php | 445 ++ lib/vendor/composer/LICENSE | 21 + lib/vendor/composer/autoload_classmap.php | 9 + lib/vendor/composer/autoload_files.php | 11 + lib/vendor/composer/autoload_namespaces.php | 10 + lib/vendor/composer/autoload_psr4.php | 11 + lib/vendor/composer/autoload_real.php | 70 + lib/vendor/composer/autoload_static.php | 55 + lib/vendor/composer/installed.json | 342 ++ lib/vendor/composer/installers/LICENSE | 19 + lib/vendor/composer/installers/composer.json | 112 + .../src/Composer/Installers/AglInstaller.php | 21 + .../Composer/Installers/AimeosInstaller.php | 9 + .../Installers/AnnotateCmsInstaller.php | 11 + .../Composer/Installers/AsgardInstaller.php | 49 + .../Composer/Installers/AttogramInstaller.php | 9 + .../src/Composer/Installers/BaseInstaller.php | 137 + .../Composer/Installers/BitrixInstaller.php | 126 + .../Composer/Installers/BonefishInstaller.php | 9 + .../Composer/Installers/CakePHPInstaller.php | 72 + .../src/Composer/Installers/ChefInstaller.php | 11 + .../Composer/Installers/CiviCrmInstaller.php | 9 + .../Installers/ClanCatsFrameworkInstaller.php | 10 + .../Composer/Installers/CockpitInstaller.php | 34 + .../Installers/CodeIgniterInstaller.php | 11 + .../Installers/Concrete5Installer.php | 13 + .../Composer/Installers/CraftInstaller.php | 35 + .../Composer/Installers/CroogoInstaller.php | 21 + .../Composer/Installers/DecibelInstaller.php | 10 + .../Composer/Installers/DframeInstaller.php | 10 + .../Composer/Installers/DokuWikiInstaller.php | 50 + .../Composer/Installers/DolibarrInstaller.php | 16 + .../Composer/Installers/DrupalInstaller.php | 22 + .../src/Composer/Installers/ElggInstaller.php | 9 + .../Composer/Installers/EliasisInstaller.php | 12 + .../Installers/ExpressionEngineInstaller.php | 29 + .../Installers/EzPlatformInstaller.php | 10 + .../src/Composer/Installers/FuelInstaller.php | 11 + .../Composer/Installers/FuelphpInstaller.php | 9 + .../src/Composer/Installers/GravInstaller.php | 30 + .../Composer/Installers/HuradInstaller.php | 25 + .../Composer/Installers/ImageCMSInstaller.php | 11 + .../src/Composer/Installers/Installer.php | 280 ++ .../src/Composer/Installers/ItopInstaller.php | 9 + .../Composer/Installers/JoomlaInstaller.php | 15 + .../Composer/Installers/KanboardInstaller.php | 18 + .../Composer/Installers/KirbyInstaller.php | 11 + .../Composer/Installers/KnownInstaller.php | 11 + .../Composer/Installers/KodiCMSInstaller.php | 10 + .../Composer/Installers/KohanaInstaller.php | 9 + .../LanManagementSystemInstaller.php | 27 + .../Composer/Installers/LaravelInstaller.php | 9 + .../Composer/Installers/LavaLiteInstaller.php | 10 + .../Composer/Installers/LithiumInstaller.php | 10 + .../Installers/MODULEWorkInstaller.php | 9 + .../Composer/Installers/MODXEvoInstaller.php | 16 + .../Composer/Installers/MagentoInstaller.php | 11 + .../Composer/Installers/MajimaInstaller.php | 37 + .../src/Composer/Installers/MakoInstaller.php | 9 + .../Composer/Installers/MantisBTInstaller.php | 23 + .../Composer/Installers/MauticInstaller.php | 25 + .../src/Composer/Installers/MayaInstaller.php | 33 + .../Installers/MediaWikiInstaller.php | 51 + .../Installers/MicroweberInstaller.php | 119 + .../src/Composer/Installers/ModxInstaller.php | 12 + .../Composer/Installers/MoodleInstaller.php | 58 + .../Composer/Installers/OctoberInstaller.php | 47 + .../Composer/Installers/OntoWikiInstaller.php | 24 + .../Composer/Installers/OsclassInstaller.php | 14 + .../src/Composer/Installers/OxidInstaller.php | 59 + .../src/Composer/Installers/PPIInstaller.php | 9 + .../Composer/Installers/PhiftyInstaller.php | 11 + .../Composer/Installers/PhpBBInstaller.php | 11 + .../Composer/Installers/PimcoreInstaller.php | 21 + .../Composer/Installers/PiwikInstaller.php | 32 + .../Installers/PlentymarketsInstaller.php | 29 + .../src/Composer/Installers/Plugin.php | 27 + .../Composer/Installers/PortoInstaller.php | 9 + .../Installers/PrestashopInstaller.php | 10 + .../Composer/Installers/PuppetInstaller.php | 11 + .../Composer/Installers/PxcmsInstaller.php | 63 + .../Composer/Installers/RadPHPInstaller.php | 24 + .../Composer/Installers/ReIndexInstaller.php | 10 + .../Composer/Installers/Redaxo5Installer.php | 10 + .../Composer/Installers/RedaxoInstaller.php | 10 + .../Installers/RoundcubeInstaller.php | 22 + .../src/Composer/Installers/SMFInstaller.php | 10 + .../Composer/Installers/ShopwareInstaller.php | 60 + .../Installers/SilverStripeInstaller.php | 35 + .../Installers/SiteDirectInstaller.php | 25 + .../Composer/Installers/SyDESInstaller.php | 49 + .../Composer/Installers/SyliusInstaller.php | 9 + .../Composer/Installers/Symfony1Installer.php | 26 + .../Composer/Installers/TYPO3CmsInstaller.php | 16 + .../Installers/TYPO3FlowInstaller.php | 38 + .../src/Composer/Installers/TaoInstaller.php | 12 + .../Composer/Installers/TheliaInstaller.php | 12 + .../src/Composer/Installers/TuskInstaller.php | 14 + .../Installers/UserFrostingInstaller.php | 9 + .../Composer/Installers/VanillaInstaller.php | 10 + .../Composer/Installers/VgmcpInstaller.php | 49 + .../Composer/Installers/WHMCSInstaller.php | 21 + .../Composer/Installers/WolfCMSInstaller.php | 9 + .../Installers/WordPressInstaller.php | 12 + .../Composer/Installers/YawikInstaller.php | 32 + .../src/Composer/Installers/ZendInstaller.php | 11 + .../Composer/Installers/ZikulaInstaller.php | 10 + .../composer/installers/src/bootstrap.php | 13 + .../instantiator/.doctrine-project.json | 26 + .../doctrine/instantiator/CONTRIBUTING.md | 35 + lib/vendor/doctrine/instantiator/LICENSE | 19 + lib/vendor/doctrine/instantiator/README.md | 39 + .../doctrine/instantiator/composer.json | 47 + .../doctrine/instantiator/docs/en/index.rst | 68 + .../doctrine/instantiator/docs/en/sidebar.rst | 4 + .../doctrine/instantiator/phpbench.json | 4 + .../doctrine/instantiator/phpcs.xml.dist | 35 + .../doctrine/instantiator/phpstan.neon.dist | 19 + .../Exception/ExceptionInterface.php | 12 + .../Exception/InvalidArgumentException.php | 37 + .../Exception/UnexpectedValueException.php | 48 + .../Doctrine/Instantiator/Instantiator.php | 198 + .../Instantiator/InstantiatorInterface.php | 20 + lib/vendor/lexpress/doctrine1/.gitattributes | 7 + lib/vendor/lexpress/doctrine1/.gitignore | 2 + lib/vendor/lexpress/doctrine1/.travis.yml | 35 + lib/vendor/lexpress/doctrine1/CHANGELOG.md | 20 + lib/vendor/lexpress/doctrine1/COPYRIGHT | 37 + lib/vendor/lexpress/doctrine1/LICENSE | 504 ++ lib/vendor/lexpress/doctrine1/UPGRADE_TO_1_2 | 983 ++++ .../lexpress/doctrine1/build.properties.dev | 11 + lib/vendor/lexpress/doctrine1/build.xml | 94 + lib/vendor/lexpress/doctrine1/composer.json | 41 + .../doctrine1/lib}/Doctrine/Access.php | 6 + .../lib}/Doctrine/Adapter/Exception.php | 0 .../lib}/Doctrine/Adapter/Interface.php | 0 .../doctrine1/lib}/Doctrine/Adapter/Mock.php | 0 .../lib}/Doctrine/Adapter/Oracle.php | 0 .../lib}/Doctrine/Adapter/Statement.php | 0 .../Doctrine/Adapter/Statement/Interface.php | 0 .../lib}/Doctrine/Adapter/Statement/Mock.php | 0 .../lib/Doctrine/Adapter/Statement/Oracle.php | 600 +++ .../doctrine1/lib}/Doctrine/AuditLog.php | 0 .../lib}/Doctrine/AuditLog/Listener.php | 0 .../Doctrine/AuditLog/Listener/Microtime.php | 0 .../doctrine1/lib}/Doctrine/Builder.php | 0 .../doctrine1/lib}/Doctrine/Cache/Apc.php | 0 .../doctrine1/lib}/Doctrine/Cache/Array.php | 0 .../doctrine1/lib}/Doctrine/Cache/Db.php | 0 .../doctrine1/lib}/Doctrine/Cache/Driver.php | 0 .../lib}/Doctrine/Cache/Exception.php | 0 .../lib}/Doctrine/Cache/Interface.php | 0 .../lib}/Doctrine/Cache/Memcache.php | 0 .../doctrine1/lib}/Doctrine/Cache/Xcache.php | 0 .../lexpress/doctrine1/lib/Doctrine/Cli.php | 679 +++ .../lib}/Doctrine/Cli/AnsiColorFormatter.php | 0 .../doctrine1/lib}/Doctrine/Cli/Exception.php | 0 .../doctrine1/lib}/Doctrine/Cli/Formatter.php | 0 .../doctrine1/lib}/Doctrine/Collection.php | 155 +- .../lib}/Doctrine/Collection/Exception.php | 0 .../lib}/Doctrine/Collection/Iterator.php | 0 .../Collection/Iterator/Expandable.php | 0 .../Doctrine/Collection/Iterator/Normal.php | 0 .../Doctrine/Collection/Iterator/Offset.php | 0 .../lib}/Doctrine/Collection/Offset.php | 0 .../lib}/Doctrine/Collection/OnDemand.php | 0 .../doctrine1/lib/Doctrine/Column.php | 163 + .../doctrine1/lib}/Doctrine/Compiler.php | 7 +- .../lib}/Doctrine/Compiler/Exception.php | 0 .../doctrine1/lib}/Doctrine/Configurable.php | 33 +- .../doctrine1/lib}/Doctrine/Connection.php | 64 +- .../lib}/Doctrine/Connection/Common.php | 0 .../lib}/Doctrine/Connection/Db2.php | 6 +- .../lib}/Doctrine/Connection/Exception.php | 0 .../lib}/Doctrine/Connection/Mock.php | 0 .../lib}/Doctrine/Connection/Module.php | 0 .../lib/Doctrine/Connection/Mssql.php | 383 ++ .../Doctrine/Connection/Mssql/Exception.php | 0 .../lib}/Doctrine/Connection/Mysql.php | 0 .../Doctrine/Connection/Mysql/Exception.php | 0 .../lib/Doctrine/Connection/Oracle.php | 162 + .../Doctrine/Connection/Oracle/Exception.php | 0 .../lib/Doctrine/Connection/Pgsql.php | 246 + .../Doctrine/Connection/Pgsql/Exception.php | 0 .../lib}/Doctrine/Connection/Profiler.php | 0 .../Connection/Profiler/Exception.php | 0 .../lib}/Doctrine/Connection/Sqlite.php | 0 .../Doctrine/Connection/Sqlite/Exception.php | 0 .../lib}/Doctrine/Connection/Statement.php | 21 +- .../lib/Doctrine/Connection/UnitOfWork.php | 960 ++++ .../doctrine1/lib}/Doctrine/Core.php | 96 +- .../doctrine1/lib}/Doctrine/Data.php | 89 +- .../lib}/Doctrine/Data/Exception.php | 0 .../doctrine1/lib/Doctrine/Data/Export.php | 213 + .../doctrine1/lib}/Doctrine/Data/Import.php | 17 +- .../doctrine1/lib}/Doctrine/DataDict.php | 0 .../lib}/Doctrine/DataDict/Exception.php | 0 .../doctrine1/lib/Doctrine/DataDict/Mssql.php | 273 ++ .../doctrine1/lib/Doctrine/DataDict/Mysql.php | 514 +++ .../lib}/Doctrine/DataDict/Oracle.php | 0 .../doctrine1/lib/Doctrine/DataDict/Pgsql.php | 686 +++ .../lib}/Doctrine/DataDict/Sqlite.php | 0 .../lexpress/doctrine1/lib/Doctrine/Event.php | 375 ++ .../doctrine1/lib}/Doctrine/EventListener.php | 0 .../lib}/Doctrine/EventListener/Chain.php | 0 .../lib}/Doctrine/EventListener/Exception.php | 0 .../lib}/Doctrine/EventListener/Interface.php | 0 .../doctrine1/lib}/Doctrine/Exception.php | 0 .../doctrine1/lib/Doctrine/Export.php | 1389 ++++++ .../lib}/Doctrine/Export/Exception.php | 0 .../doctrine1/lib/Doctrine/Export/Mssql.php | 524 +++ .../doctrine1/lib/Doctrine/Export/Mysql.php | 819 ++++ .../doctrine1/lib}/Doctrine/Export/Oracle.php | 0 .../doctrine1/lib/Doctrine/Export/Pgsql.php | 393 ++ .../lib}/Doctrine/Export/Reporter.php | 0 .../doctrine1/lib}/Doctrine/Export/Schema.php | 0 .../doctrine1/lib}/Doctrine/Export/Sqlite.php | 0 .../doctrine1/lib}/Doctrine/Expression.php | 0 .../lib}/Doctrine/Expression/Driver.php | 0 .../lib}/Doctrine/Expression/Exception.php | 0 .../lib}/Doctrine/Expression/Mock.php | 0 .../lib/Doctrine/Expression/Mssql.php | 135 + .../lib}/Doctrine/Expression/Mysql.php | 0 .../lib}/Doctrine/Expression/Oracle.php | 0 .../lib/Doctrine/Expression/Pgsql.php | 260 ++ .../lib}/Doctrine/Expression/Sqlite.php | 0 .../doctrine1/lib}/Doctrine/File.php | 0 .../doctrine1/lib}/Doctrine/File/Index.php | 0 .../doctrine1/lib}/Doctrine/Formatter.php | 4 +- .../doctrine1/lib}/Doctrine/Hook.php | 0 .../doctrine1/lib}/Doctrine/Hook/Equal.php | 0 .../doctrine1/lib}/Doctrine/Hook/Integer.php | 0 .../doctrine1/lib}/Doctrine/Hook/Parser.php | 0 .../lib}/Doctrine/Hook/Parser/Complex.php | 0 .../doctrine1/lib}/Doctrine/Hook/WordLike.php | 0 .../doctrine1/lib}/Doctrine/Hydrator.php | 15 +- .../lib/Doctrine/Hydrator/Abstract.php | 121 + .../lib}/Doctrine/Hydrator/ArrayDriver.php | 2 +- .../Hydrator/ArrayHierarchyDriver.php | 4 +- .../Doctrine/Hydrator/ArrayShallowDriver.php | 44 + .../lib}/Doctrine/Hydrator/Exception.php | 0 .../lib}/Doctrine/Hydrator/Graph.php | 113 +- .../lib}/Doctrine/Hydrator/NoneDriver.php | 0 .../lib}/Doctrine/Hydrator/RecordDriver.php | 4 +- .../Hydrator/RecordHierarchyDriver.php | 0 .../lib}/Doctrine/Hydrator/ScalarDriver.php | 0 .../Doctrine/Hydrator/SingleScalarDriver.php | 0 .../doctrine1/lib}/Doctrine/I18n.php | 0 .../lib}/Doctrine/I18n/Exception.php | 0 .../doctrine1/lib}/Doctrine/Import.php | 0 .../lib}/Doctrine/Import/Builder.php | 277 +- .../Doctrine/Import/Builder/Exception.php | 0 .../lib}/Doctrine/Import/Exception.php | 0 .../doctrine1/lib/Doctrine/Import/Mssql.php | 248 + .../doctrine1/lib/Doctrine/Import/Mysql.php | 240 + .../doctrine1/lib}/Doctrine/Import/Oracle.php | 0 .../doctrine1/lib/Doctrine/Import/Pgsql.php | 304 ++ .../doctrine1/lib}/Doctrine/Import/Schema.php | 6 +- .../doctrine1/lib}/Doctrine/Import/Sqlite.php | 10 +- .../doctrine1/lib}/Doctrine/Inflector.php | 2 +- .../lib}/Doctrine/IntegrityMapper.php | 0 .../doctrine1/lib}/Doctrine/Lib.php | 62 +- .../doctrine1/lib}/Doctrine/Locator.php | 21 +- .../lib}/Doctrine/Locator/Exception.php | 0 .../lib}/Doctrine/Locator/Injectable.php | 0 .../lib}/Doctrine/Locking/Exception.php | 0 .../Doctrine/Locking/Manager/Pessimistic.php | 0 .../doctrine1/lib}/Doctrine/Manager.php | 91 +- .../lib}/Doctrine/Manager/Exception.php | 0 .../doctrine1/lib}/Doctrine/Migration.php | 0 .../lib}/Doctrine/Migration/Base.php | 0 .../lib}/Doctrine/Migration/Builder.php | 0 .../lib}/Doctrine/Migration/Diff.php | 12 +- .../lib}/Doctrine/Migration/Exception.php | 0 .../IrreversibleMigrationException.php | 0 .../lib}/Doctrine/Migration/Process.php | 0 .../doctrine1/lib}/Doctrine/Node.php | 0 .../lib}/Doctrine/Node/AdjacencyList.php | 0 .../Node/AdjacencyList/LevelOrderIterator.php | 0 .../Node/AdjacencyList/PostOrderIterator.php | 0 .../Node/AdjacencyList/PreOrderIterator.php | 0 .../lib}/Doctrine/Node/Exception.php | 0 .../lib}/Doctrine/Node/Interface.php | 0 .../lib}/Doctrine/Node/MaterializedPath.php | 0 .../MaterializedPath/LevelOrderIterator.php | 0 .../MaterializedPath/PostOrderIterator.php | 0 .../MaterializedPath/PreOrderIterator.php | 0 .../lib}/Doctrine/Node/NestedSet.php | 0 .../Node/NestedSet/LevelOrderIterator.php | 0 .../Node/NestedSet/PostOrderIterator.php | 0 .../Node/NestedSet/PreOrderIterator.php | 0 .../doctrine1/lib}/Doctrine/Null.php | 0 .../doctrine1/lib}/Doctrine/Overloadable.php | 0 .../doctrine1/lib}/Doctrine/Pager.php | 2 +- .../lib}/Doctrine/Pager/Exception.php | 0 .../doctrine1/lib}/Doctrine/Pager/Layout.php | 0 .../doctrine1/lib}/Doctrine/Pager/Range.php | 0 .../lib}/Doctrine/Pager/Range/Jumping.php | 0 .../lib}/Doctrine/Pager/Range/Sliding.php | 0 .../doctrine1/lib/Doctrine/Parser.php | 153 + .../lib}/Doctrine/Parser/Exception.php | 0 .../doctrine1/lib}/Doctrine/Parser/Json.php | 12 +- .../lib}/Doctrine/Parser/Serialize.php | 18 +- .../doctrine1/lib}/Doctrine/Parser/Xml.php | 16 +- .../doctrine1/lib}/Doctrine/Parser/Yml.php | 4 +- .../lib}/Doctrine/Parser/sfYaml/sfYaml.php | 0 .../Doctrine/Parser/sfYaml/sfYamlDumper.php | 0 .../Doctrine/Parser/sfYaml/sfYamlInline.php | 442 ++ .../Doctrine/Parser/sfYaml/sfYamlParser.php | 622 +++ .../doctrine1/lib}/Doctrine/Query.php | 100 +- .../doctrine1/lib/Doctrine/Query/Abstract.php | 2316 ++++++++++ .../doctrine1/lib}/Doctrine/Query/Check.php | 0 .../lib}/Doctrine/Query/Condition.php | 0 .../lib}/Doctrine/Query/Exception.php | 0 .../doctrine1/lib}/Doctrine/Query/Filter.php | 0 .../lib}/Doctrine/Query/Filter/Chain.php | 0 .../lib}/Doctrine/Query/Filter/Interface.php | 0 .../lib}/Doctrine/Query/Forupdate.php | 0 .../doctrine1/lib}/Doctrine/Query/From.php | 0 .../doctrine1/lib}/Doctrine/Query/Groupby.php | 0 .../doctrine1/lib}/Doctrine/Query/Having.php | 14 +- .../lib}/Doctrine/Query/JoinCondition.php | 0 .../doctrine1/lib}/Doctrine/Query/Limit.php | 0 .../doctrine1/lib}/Doctrine/Query/Offset.php | 0 .../doctrine1/lib}/Doctrine/Query/Orderby.php | 14 +- .../doctrine1/lib}/Doctrine/Query/Parser.php | 0 .../doctrine1/lib}/Doctrine/Query/Part.php | 0 .../lib}/Doctrine/Query/Registry.php | 0 .../Doctrine/Query/Registry/Exception.php | 0 .../doctrine1/lib}/Doctrine/Query/Select.php | 0 .../doctrine1/lib}/Doctrine/Query/Set.php | 0 .../lib/Doctrine/Query/Tokenizer.php | 558 +++ .../Doctrine/Query/Tokenizer/Exception.php | 0 .../doctrine1/lib}/Doctrine/Query/Where.php | 29 +- .../doctrine1/lib}/Doctrine/RawSql.php | 2 +- .../lib}/Doctrine/RawSql/Exception.php | 0 .../doctrine1/lib}/Doctrine/Record.php | 59 +- .../lib/Doctrine/Record/Abstract.php | 399 ++ .../lib}/Doctrine/Record/Exception.php | 0 .../doctrine1/lib}/Doctrine/Record/Filter.php | 0 .../lib}/Doctrine/Record/Filter/Compound.php | 0 .../lib}/Doctrine/Record/Filter/Standard.php | 2 +- .../lib}/Doctrine/Record/Generator.php | 8 +- .../lib}/Doctrine/Record/Iterator.php | 0 .../lib}/Doctrine/Record/Listener.php | 0 .../lib}/Doctrine/Record/Listener/Chain.php | 0 .../Doctrine/Record/Listener/Interface.php | 0 .../lib}/Doctrine/Record/State/Exception.php | 0 .../Record/UnknownPropertyException.php | 0 .../doctrine1/lib}/Doctrine/Relation.php | 2 +- .../lib}/Doctrine/Relation/Association.php | 0 .../Doctrine/Relation/Association/Self.php | 0 .../lib}/Doctrine/Relation/Exception.php | 0 .../lib}/Doctrine/Relation/ForeignKey.php | 0 .../lib}/Doctrine/Relation/LocalKey.php | 0 .../doctrine1/lib}/Doctrine/Relation/Nest.php | 0 .../lib/Doctrine/Relation/Parser.php | 539 +++ .../Doctrine/Relation/Parser/Exception.php | 0 .../doctrine1/lib}/Doctrine/Search.php | 6 +- .../lib}/Doctrine/Search/Analyzer.php | 0 .../Doctrine/Search/Analyzer/Exception.php | 0 .../Doctrine/Search/Analyzer/Interface.php | 0 .../Doctrine/Search/Analyzer/Standard.php | 0 .../lib}/Doctrine/Search/Analyzer/Utf8.php | 0 .../lib}/Doctrine/Search/Exception.php | 0 .../doctrine1/lib}/Doctrine/Search/File.php | 0 .../lib}/Doctrine/Search/Indexer.php | 0 .../lib}/Doctrine/Search/Indexer/Dir.php | 0 .../Doctrine/Search/Indexer/Exception.php | 0 .../lib}/Doctrine/Search/Listener.php | 0 .../doctrine1/lib}/Doctrine/Search/Parser.php | 0 .../doctrine1/lib}/Doctrine/Search/Query.php | 0 .../doctrine1/lib}/Doctrine/Search/Record.php | 0 .../doctrine1/lib}/Doctrine/Sequence.php | 0 .../doctrine1/lib}/Doctrine/Sequence/Db2.php | 0 .../lib}/Doctrine/Sequence/Exception.php | 0 .../lib}/Doctrine/Sequence/Mssql.php | 0 .../lib}/Doctrine/Sequence/Mysql.php | 0 .../lib}/Doctrine/Sequence/Oracle.php | 0 .../lib}/Doctrine/Sequence/Pgsql.php | 0 .../lib}/Doctrine/Sequence/Sqlite.php | 0 .../lexpress/doctrine1/lib/Doctrine/Table.php | 3069 +++++++++++++ .../lib}/Doctrine/Table/Exception.php | 0 .../lib}/Doctrine/Table/Repository.php | 0 .../Doctrine/Table/Repository/Exception.php | 0 .../lib/Doctrine/Table/Repository/None.php | 90 + .../doctrine1/lib}/Doctrine/Task.php | 0 .../doctrine1/lib}/Doctrine/Task/BuildAll.php | 0 .../lib}/Doctrine/Task/BuildAllLoad.php | 0 .../lib}/Doctrine/Task/BuildAllReload.php | 0 .../doctrine1/lib}/Doctrine/Task/Compile.php | 0 .../doctrine1/lib}/Doctrine/Task/CreateDb.php | 0 .../lib}/Doctrine/Task/CreateTables.php | 0 .../doctrine1/lib}/Doctrine/Task/Dql.php | 0 .../doctrine1/lib}/Doctrine/Task/DropDb.php | 0 .../doctrine1/lib}/Doctrine/Task/DumpData.php | 0 .../lib}/Doctrine/Task/Exception.php | 0 .../lib}/Doctrine/Task/GenerateMigration.php | 0 .../Doctrine/Task/GenerateMigrationsDb.php | 0 .../Doctrine/Task/GenerateMigrationsDiff.php | 0 .../Task/GenerateMigrationsModels.php | 0 .../lib}/Doctrine/Task/GenerateModelsDb.php | 0 .../lib}/Doctrine/Task/GenerateModelsYaml.php | 0 .../lib}/Doctrine/Task/GenerateSql.php | 0 .../lib}/Doctrine/Task/GenerateYamlDb.php | 0 .../lib}/Doctrine/Task/GenerateYamlModels.php | 0 .../doctrine1/lib}/Doctrine/Task/LoadData.php | 11 +- .../doctrine1/lib}/Doctrine/Task/Migrate.php | 0 .../lib}/Doctrine/Task/RebuildDb.php | 20 +- .../doctrine1/lib}/Doctrine/Template.php | 0 .../lib}/Doctrine/Template/Geographical.php | 12 +- .../doctrine1/lib}/Doctrine/Template/I18n.php | 0 .../Doctrine/Template/Listener/Sluggable.php | 2 +- .../Doctrine/Template/Listener/SoftDelete.php | 0 .../Template/Listener/Timestampable.php | 16 +- .../lib}/Doctrine/Template/NestedSet.php | 0 .../lib}/Doctrine/Template/Searchable.php | 0 .../lib}/Doctrine/Template/Sluggable.php | 0 .../lib}/Doctrine/Template/SoftDelete.php | 1 - .../lib}/Doctrine/Template/Timestampable.php | 0 .../lib}/Doctrine/Template/Versionable.php | 0 .../doctrine1/lib}/Doctrine/Transaction.php | 4 +- .../lib}/Doctrine/Transaction/Exception.php | 0 .../lib}/Doctrine/Transaction/Mock.php | 0 .../lib}/Doctrine/Transaction/Mssql.php | 0 .../lib}/Doctrine/Transaction/Mysql.php | 0 .../lib}/Doctrine/Transaction/Oracle.php | 0 .../lib}/Doctrine/Transaction/Pgsql.php | 0 .../lib}/Doctrine/Transaction/Sqlite.php | 0 .../doctrine1/lib}/Doctrine/Tree.php | 0 .../lib}/Doctrine/Tree/AdjacencyList.php | 0 .../lib}/Doctrine/Tree/Exception.php | 0 .../lib}/Doctrine/Tree/Interface.php | 0 .../lib}/Doctrine/Tree/MaterializedPath.php | 0 .../lib}/Doctrine/Tree/NestedSet.php | 0 .../doctrine1/lib}/Doctrine/Util.php | 0 .../doctrine1/lib/Doctrine/Validator.php | 207 + .../lib}/Doctrine/Validator/Country.php | 0 .../lib}/Doctrine/Validator/Creditcard.php | 0 .../lib}/Doctrine/Validator/Date.php | 0 .../lib}/Doctrine/Validator/Driver.php | 0 .../lib}/Doctrine/Validator/Email.php | 0 .../lib}/Doctrine/Validator/ErrorStack.php | 7 +- .../lib}/Doctrine/Validator/Exception.php | 0 .../lib}/Doctrine/Validator/Future.php | 0 .../lib/Doctrine/Validator/HtmlColor.php | 51 + .../lib}/Doctrine/Validator/Htmlcolor.php | 0 .../doctrine1/lib}/Doctrine/Validator/Ip.php | 0 .../lib}/Doctrine/Validator/Minlength.php | 0 .../lib}/Doctrine/Validator/Nospace.php | 0 .../lib}/Doctrine/Validator/Notblank.php | 0 .../lib}/Doctrine/Validator/Notnull.php | 0 .../lib}/Doctrine/Validator/Past.php | 0 .../lib}/Doctrine/Validator/Range.php | 0 .../lib}/Doctrine/Validator/Readonly.php | 0 .../lib}/Doctrine/Validator/Regexp.php | 0 .../lib}/Doctrine/Validator/Time.php | 0 .../lib}/Doctrine/Validator/Timestamp.php | 11 +- .../lib}/Doctrine/Validator/Unique.php | 0 .../lib}/Doctrine/Validator/Unsigned.php | 0 .../lib}/Doctrine/Validator/Usstate.php | 0 .../doctrine1/lib}/Doctrine/View.php | 0 .../lib}/Doctrine/View/Exception.php | 0 lib/vendor/lexpress/doctrine1/package.xml | 1625 +++++++ .../CliTestCase/CustomDoctrineStyleTask.php} | 0 .../TaskDeclaredInAnIncFile.inc.php} | 0 .../tests/CliTestCase/TestTask02.php | 11 + .../doctrine1/tests/CliTestCase/baz.php} | 0 .../doctrine1/tests/CliTestCase/bip.php} | 0 .../tests/CliTestCase/cli-default.php | 14 + .../CliTestCase/cli-with-custom-tasks.php | 20 + ...li-without-autoregistered-custom-tasks.php | 14 + .../doctrine1/tests/CliTestCase/doctrine.php} | 0 .../doctrine1/tests/CliTestCase/foo.php} | 0 .../DoctrineStyleTask.php | 11 + .../EmptyFile.php | 8 + .../InvalidClassNameForATask.php | 11 + .../TaskDeclaredInAnIncFile.inc.php | 11 + .../should-be-ignored.php | 9 + .../doctrine1/tests/Connection/UnitOfWork.php | 213 + .../lexpress/doctrine1/tests/DoctrineTest.php | 289 ++ .../doctrine1/tests/DoctrineTest/Coverage.php | 346 ++ .../tests/DoctrineTest/GroupTest.php | 110 + .../doctrine1/tests/DoctrineTest/Reporter.php | 56 + .../tests/DoctrineTest/Reporter/Cli.php | 20 + .../tests/DoctrineTest/Reporter/Html.php | 82 + .../lib/Doctrine/Template/TestBehavior.php | 9 + .../TestExtension/lib/Doctrine/Test.php | 5 + .../tests/Migration/Diff/schema/from.yml | 27 + .../tests/Migration/Diff/schema/to.yml | 31 + .../ModelLoadingTest/Aggressive/Models.php | 16 + .../Aggressive/MoreModels.php | 16 + .../BaseConservativeModelLoadingUser.php | 8 + .../ConservativeModelLoadingContact.php | 8 + .../ConservativeModelLoadingProfile.php | 8 + .../ConservativeModelLoadingUser.php | 10 + .../tests/Search/_files/content.html | 7 + .../doctrine1/tests/Search/_files/content.txt | 12 + .../tests/TaskTestCase/TestTask004.php | 13 + .../tests/TaskTestCase/TestTask005.php | 13 + .../tests/TaskTestCase/TestTask006.php | 16 + .../doctrine1/tests/Ticket/1617_schema.yml | 32 + .../1727/models1/Ticket_1727_Model1.php | 8 + .../1727/models1/Ticket_1727_Model2.php | 8 + .../1727/models2/Ticket_1727_Model3.php | 8 + .../1727/models2/Ticket_1727_Model4.php | 8 + .../2375/models1/Ticket_2375_Model1.php | 8 + .../2375/models1/Ticket_2375_Model2.php | 9 + .../2375/models2/Ticket_2375_Model3.php | 8 + .../2375/models2/Ticket_2375_Model4.php | 9 + .../2375/models2/Ticket_2375_Model5.php | 17 + .../tests/Ticket/DC221/TestMigration.php | 8 + .../doctrine1/tests/Ticket/DC292/from.yml | 4 + .../doctrine1/tests/Ticket/DC292/to.yml | 5 + .../doctrine1/tests/Ticket/DC95/schema.yml | 8 + .../lexpress/doctrine1/tests/bootstrap.php | 22 + lib/vendor/lexpress/doctrine1/tests/index.php | 2 + .../tests/migration_classes/10_test.class.php | 8 + .../tests/migration_classes/11_test.class.php | 8 + .../1_add_phonenumber.class.php | 11 + .../migration_classes/2_add_user.class.php | 11 + .../migration_classes/3_add_profile.class.php | 11 + .../4_drop_profile.class.php | 12 + .../tests/migration_classes/5_test.class.php | 8 + .../tests/migration_classes/6_test.class.php | 8 + .../tests/migration_classes/7_test.class.php | 8 + .../tests/migration_classes/8_test.class.php | 8 + .../tests/migration_classes/9_test.class.php | 8 + .../doctrine1/tests/models/Account.php | 10 + .../doctrine1/tests/models/Address.php | 13 + .../lexpress/doctrine1/tests/models/Album.php | 17 + .../lexpress/doctrine1/tests/models/App.php | 19 + .../doctrine1/tests/models/App_Category.php | 18 + .../doctrine1/tests/models/App_User.php | 18 + .../doctrine1/tests/models/Assignment.php | 8 + .../lexpress/doctrine1/tests/models/Auth.php | 14 + .../doctrine1/tests/models/Author.php | 15 + .../tests/models/BadlyNamed__Class.php | 8 + .../doctrine1/tests/models/BarRecord.php | 13 + .../tests/models/BaseSymfonyRecord.php | 13 + .../lexpress/doctrine1/tests/models/Blog.php | 32 + .../doctrine1/tests/models/BlogTag.php | 13 + .../tests/models/BoardWithPosition.php | 10 + .../lexpress/doctrine1/tests/models/Book.php | 16 + .../doctrine1/tests/models/Bookmark.php | 9 + .../doctrine1/tests/models/BookmarkUser.php | 14 + .../doctrine1/tests/models/BooleanTest.php | 7 + .../tests/models/CPK_Association.php | 7 + .../doctrine1/tests/models/CPK_Test.php | 13 + .../doctrine1/tests/models/CPK_Test2.php | 13 + .../tests/models/CascadeDeleteRelatedTest.php | 20 + .../models/CascadeDeleteRelatedTest2.php | 15 + .../tests/models/CascadeDeleteTest.php | 14 + .../tests/models/CategoryWithPosition.php | 10 + .../tests/models/CheckConstraintTest.php | 10 + .../doctrine1/tests/models/ClientModel.php | 62 + .../tests/models/ColumnAliasTest.php | 15 + .../doctrine1/tests/models/ConcreteEmail.php | 8 + .../doctrine1/tests/models/ConcreteGroup.php | 8 + .../tests/models/ConcreteGroupUser.php | 8 + .../models/ConcreteInheritanceTestParent.php | 18 + .../doctrine1/tests/models/ConcreteUser.php | 9 + .../doctrine1/tests/models/CoverageCodeN.php | 11 + .../doctrine1/tests/models/CustomPK.php | 7 + .../tests/models/CustomSequenceRecord.php | 9 + .../doctrine1/tests/models/Data_File.php | 10 + .../doctrine1/tests/models/DateTest.php | 7 + .../doctrine1/tests/models/Description.php | 8 + .../doctrine1/tests/models/Element.php | 14 + .../lexpress/doctrine1/tests/models/Email.php | 8 + .../doctrine1/tests/models/Entity.php | 26 + .../doctrine1/tests/models/EntityAddress.php | 9 + .../tests/models/EntityReference.php | 11 + .../doctrine1/tests/models/EnumTest.php | 12 + .../doctrine1/tests/models/EnumTest2.php | 8 + .../doctrine1/tests/models/EnumTest3.php | 7 + .../tests/models/EventListenerChainTest.php | 21 + .../tests/models/EventListenerTest.php | 16 + .../doctrine1/tests/models/FieldNameTest.php | 12 + .../doctrine1/tests/models/File_Owner.php | 9 + .../doctrine1/tests/models/FilterTest.php | 9 + .../doctrine1/tests/models/FilterTest2.php | 7 + .../doctrine1/tests/models/FooBarRecord.php | 9 + .../tests/models/FooForeignlyOwned.php | 9 + .../tests/models/FooForeignlyOwnedWithPK.php | 12 + .../tests/models/FooLocallyOwned.php | 9 + .../doctrine1/tests/models/FooRecord.php | 43 + .../tests/models/FooReferenceRecord.php | 11 + .../doctrine1/tests/models/ForeignKeyTest.php | 24 + .../tests/models/ForeignKeyTest2.php | 13 + .../doctrine1/tests/models/Forum_Board.php | 13 + .../doctrine1/tests/models/Forum_Category.php | 25 + .../doctrine1/tests/models/Forum_Entry.php | 16 + .../doctrine1/tests/models/Forum_Thread.php | 13 + .../lexpress/doctrine1/tests/models/Group.php | 21 + .../doctrine1/tests/models/GroupUser.php | 16 + .../doctrine1/tests/models/GzipTest.php | 6 + .../tests/models/I18nRelationTest.php | 28 + .../doctrine1/tests/models/I18nTest.php | 13 + .../tests/models/InheritanceDeal.php | 16 + .../tests/models/InheritanceDealUser.php | 40 + .../tests/models/InheritanceUser.php | 16 + .../lexpress/doctrine1/tests/models/JC1.php | 8 + .../lexpress/doctrine1/tests/models/JC2.php | 8 + .../lexpress/doctrine1/tests/models/JC3.php | 8 + .../doctrine1/tests/models/LiabilityCodeN.php | 11 + .../doctrine1/tests/models/Location.php | 14 + .../doctrine1/tests/models/LocationI18n.php | 15 + .../doctrine1/tests/models/Log_Entry.php | 13 + .../doctrine1/tests/models/Log_Status.php | 6 + .../doctrine1/tests/models/M2MTest.php | 16 + .../doctrine1/tests/models/M2MTest2.php | 11 + .../doctrine1/tests/models/MigrationTest.php | 8 + .../doctrine1/tests/models/MyGroup.php | 17 + .../doctrine1/tests/models/MyOneThing.php | 17 + .../doctrine1/tests/models/MyOtherThing.php | 16 + .../doctrine1/tests/models/MyUser.php | 19 + .../doctrine1/tests/models/MyUser2.php | 23 + .../doctrine1/tests/models/MyUserGroup.php | 18 + .../doctrine1/tests/models/MyUserOneThing.php | 19 + .../tests/models/MyUserOtherThing.php | 19 + .../doctrine1/tests/models/MysqlGroup.php | 17 + .../tests/models/MysqlGroupMember.php | 10 + .../tests/models/MysqlIndexTestRecord.php | 17 + .../tests/models/MysqlTestRecord.php | 11 + .../doctrine1/tests/models/MysqlUser.php | 17 + .../doctrine1/tests/models/NestReference.php | 9 + .../doctrine1/tests/models/NestTest.php | 22 + .../models/NestedSetTest_SingleRootNode.php | 9 + .../tests/models/NestedSet_MultiRootNode.php | 10 + .../NestedSet_Timestampable_MultiRootNode.php | 10 + .../doctrine1/tests/models/NotNullTest.php | 7 + .../tests/models/ORM_AccessControl.php | 14 + .../tests/models/ORM_AccessControlsGroups.php | 9 + .../tests/models/ORM_AccessGroup.php | 14 + .../doctrine1/tests/models/ORM_TestEntry.php | 17 + .../doctrine1/tests/models/ORM_TestItem.php | 15 + .../doctrine1/tests/models/Package.php | 11 + .../doctrine1/tests/models/PackageVersion.php | 14 + .../tests/models/PackageVersionNotes.php | 15 + .../lexpress/doctrine1/tests/models/Page.php | 17 + .../doctrine1/tests/models/Phonenumber.php | 23 + .../lexpress/doctrine1/tests/models/Photo.php | 13 + .../doctrine1/tests/models/Phototag.php | 7 + .../tests/models/PluginSymfonyRecord.php | 15 + .../tests/models/PluginSymfonyRecordTable.php | 5 + .../doctrine1/tests/models/Policy.php | 15 + .../doctrine1/tests/models/PolicyAsset.php | 16 + .../doctrine1/tests/models/PolicyCodeN.php | 11 + .../doctrine1/tests/models/PolicyN.php | 16 + .../tests/models/QueryTest_Board.php | 32 + .../tests/models/QueryTest_Category.php | 43 + .../tests/models/QueryTest_Entry.php | 25 + .../doctrine1/tests/models/QueryTest_Item.php | 10 + .../doctrine1/tests/models/QueryTest_Rank.php | 23 + .../tests/models/QueryTest_Subscription.php | 9 + .../doctrine1/tests/models/QueryTest_User.php | 30 + .../tests/models/QueryTest_UserRank.php | 9 + .../lexpress/doctrine1/tests/models/RTC1.php | 10 + .../lexpress/doctrine1/tests/models/RTC2.php | 10 + .../lexpress/doctrine1/tests/models/RTC3.php | 11 + .../lexpress/doctrine1/tests/models/RTC4.php | 10 + .../lexpress/doctrine1/tests/models/RateN.php | 20 + .../lexpress/doctrine1/tests/models/Rec1.php | 15 + .../lexpress/doctrine1/tests/models/Rec2.php | 15 + .../tests/models/RecordFilterTest.php | 16 + .../doctrine1/tests/models/RecordHookTest.php | 46 + .../doctrine1/tests/models/Record_City.php | 18 + .../doctrine1/tests/models/Record_Country.php | 14 + .../tests/models/Record_District.php | 6 + .../doctrine1/tests/models/RelationTest.php | 25 + .../doctrine1/tests/models/Resource.php | 14 + .../tests/models/ResourceReference.php | 8 + .../doctrine1/tests/models/ResourceType.php | 12 + .../lexpress/doctrine1/tests/models/Role.php | 13 + .../doctrine1/tests/models/SearchTest.php | 16 + .../doctrine1/tests/models/SelfRefTest.php | 14 + .../doctrine1/tests/models/SequenceRecord.php | 8 + .../doctrine1/tests/models/SerializeTest.php | 31 + .../tests/models/SoftDeleteBCTest.php | 16 + .../doctrine1/tests/models/SoftDeleteTest.php | 14 + .../lexpress/doctrine1/tests/models/Song.php | 16 + .../doctrine1/tests/models/SymfonyRecord.php | 16 + .../tests/models/SymfonyRecordTable.php | 7 + .../lexpress/doctrine1/tests/models/Tag.php | 13 + .../lexpress/doctrine1/tests/models/Task.php | 13 + .../doctrine1/tests/models/TestError.php | 13 + .../doctrine1/tests/models/TestMovie.php | 27 + .../tests/models/TestMovieUserBookmark.php | 10 + .../tests/models/TestMovieUserVote.php | 9 + .../doctrine1/tests/models/TestRecord.php | 8 + .../doctrine1/tests/models/TestUser.php | 21 + .../doctrine1/tests/models/TreeLeaf.php | 20 + .../tests/models/UnderscoreColumn.php | 9 + .../lexpress/doctrine1/tests/models/User.php | 54 + .../doctrine1/tests/models/ValidatorTest.php | 15 + .../models/ValidatorTest_AddressModel.php | 18 + .../models/ValidatorTest_ClientModel.php | 15 + .../ValidatorTest_ClientToAddressModel.php | 19 + .../tests/models/ValidatorTest_DateModel.php | 7 + .../models/ValidatorTest_FootballPlayer.php | 8 + .../tests/models/ValidatorTest_Person.php | 13 + .../doctrine1/tests/models/VersioningTest.php | 42 + .../doctrine1/tests/models/ZeroValueTest.php | 19 + .../tests/models/export/Cms_Category.php | 21 + .../models/export/Cms_CategoryLanguages.php | 21 + .../doctrine1/tests/models/gnatEmail.php | 10 + .../doctrine1/tests/models/gnatUser.php | 19 + .../doctrine1/tests/models/mmrGroupUser_B.php | 9 + .../doctrine1/tests/models/mmrGroupUser_C.php | 10 + .../doctrine1/tests/models/mmrGroup_B.php | 14 + .../doctrine1/tests/models/mmrGroup_C.php | 15 + .../doctrine1/tests/models/mmrUser_B.php | 18 + .../doctrine1/tests/models/mmrUser_C.php | 19 + .../001_mysql_add_table.php | 14 + .../002_mysql_change_column.php | 13 + lib/vendor/lexpress/doctrine1/tests/run.php | 320 ++ .../lexpress/doctrine1/tests/schema.xml | 2 + .../lexpress/doctrine1/tests/schema.yml | 216 + .../lexpress/doctrine1/tests/template.tpl | 35 + .../doctrine1/tests/tmp/Ticket_1527_User.php | 16 + .../tmp/generated/BaseTicket_1527_User.php | 40 + .../lexpress/doctrine1/tests/unsolved.php | 38 + .../doctrine1/tools/sandbox/config.php | 59 + .../lexpress/doctrine1/tools/sandbox/doctrine | 4 + .../doctrine1/tools/sandbox/doctrine.php | 21 + .../doctrine1/tools/sandbox/index.php | 5 + .../composer-installers-extender/README.md | 45 + .../composer.json | 27 + .../src/Installer.php | 35 + .../src/InstallerHelper.php | 15 + .../src/Plugin.php | 16 + .../swiftmailer/swiftmailer/.gitattributes | 9 + .../swiftmailer/.github/ISSUE_TEMPLATE.md | 19 + .../.github/PULL_REQUEST_TEMPLATE.md | 14 + lib/vendor/swiftmailer/swiftmailer/.gitignore | 8 + .../swiftmailer/swiftmailer/.php_cs.dist | 15 + .../swiftmailer/swiftmailer/.travis.yml | 31 + lib/vendor/swiftmailer/swiftmailer/CHANGES | 287 ++ lib/vendor/swiftmailer/swiftmailer/LICENSE | 19 + lib/vendor/swiftmailer/swiftmailer/README | 15 + lib/vendor/swiftmailer/swiftmailer/VERSION | 1 + .../swiftmailer/swiftmailer/composer.json | 37 + .../swiftmailer/swiftmailer/doc/headers.rst | 739 +++ .../swiftmailer/doc/help-resources.rst | 44 + .../swiftmailer/doc/including-the-files.rst | 46 + .../swiftmailer/swiftmailer/doc/index.rst | 16 + .../swiftmailer/doc/installing.rst | 89 + .../swiftmailer/doc/introduction.rst | 135 + .../swiftmailer/swiftmailer/doc/japanese.rst | 22 + .../swiftmailer/swiftmailer/doc/messages.rst | 1058 +++++ .../swiftmailer/swiftmailer/doc/overview.rst | 159 + .../swiftmailer/swiftmailer/doc/plugins.rst | 385 ++ .../swiftmailer/swiftmailer/doc/sending.rst | 571 +++ .../swiftmailer/doc/uml/Encoders.graffle | Bin 0 -> 3503 bytes .../swiftmailer/doc/uml/Mime.graffle | Bin 0 -> 5575 bytes .../swiftmailer/doc/uml/Transports.graffle | Bin 0 -> 3061 bytes .../swiftmailer/lib/classes/Swift.php | 80 + .../lib/classes/Swift/Attachment.php | 71 + .../AbstractFilterableInputStream.php | 181 + .../Swift/ByteStream/ArrayByteStream.php | 182 + .../Swift/ByteStream/FileByteStream.php | 231 + .../ByteStream/TemporaryFileByteStream.php | 42 + .../lib/classes/Swift/CharacterReader.php | 67 + .../GenericFixedWidthReader.php | 97 + .../Swift/CharacterReader/UsAsciiReader.php | 84 + .../Swift/CharacterReader/Utf8Reader.php | 176 + .../classes/Swift/CharacterReaderFactory.php | 26 + .../SimpleCharacterReaderFactory.php | 124 + .../lib/classes/Swift/CharacterStream.php | 89 + .../CharacterStream/ArrayCharacterStream.php | 293 ++ .../CharacterStream/NgCharacterStream.php | 267 ++ .../lib/classes/Swift/ConfigurableSpool.php | 63 + .../lib/classes/Swift/DependencyContainer.php | 373 ++ .../lib/classes/Swift/DependencyException.php | 27 + .../lib/classes/Swift/EmbeddedFile.php | 69 + .../swiftmailer/lib/classes/Swift/Encoder.php | 28 + .../classes/Swift/Encoder/Base64Encoder.php | 58 + .../lib/classes/Swift/Encoder/QpEncoder.php | 300 ++ .../classes/Swift/Encoder/Rfc2231Encoder.php | 92 + .../lib/classes/Swift/Encoding.php | 62 + .../lib/classes/Swift/Events/CommandEvent.php | 65 + .../classes/Swift/Events/CommandListener.php | 24 + .../lib/classes/Swift/Events/Event.php | 38 + .../classes/Swift/Events/EventDispatcher.php | 83 + .../classes/Swift/Events/EventListener.php | 5 +- .../lib/classes/Swift/Events/EventObject.php | 63 + .../classes/Swift/Events/ResponseEvent.php | 65 + .../classes/Swift/Events/ResponseListener.php | 24 + .../lib/classes/Swift/Events/SendEvent.php | 129 + .../lib/classes/Swift/Events/SendListener.php | 31 + .../Swift/Events/SimpleEventDispatcher.php | 156 + .../Swift/Events/TransportChangeEvent.php | 27 + .../Swift/Events/TransportChangeListener.php | 45 + .../Swift/Events/TransportExceptionEvent.php | 46 + .../Events/TransportExceptionListener.php | 24 + .../lib/classes/Swift/FailoverTransport.php | 45 + .../lib/classes/Swift/FileSpool.php | 208 + .../lib/classes/Swift/FileStream.php | 24 + .../lib/classes/Swift/Filterable.php | 32 + .../swiftmailer/lib/classes/Swift/Image.php | 57 + .../lib/classes/Swift/InputByteStream.php | 75 + .../lib/classes/Swift/IoException.php | 29 + .../lib/classes/Swift/KeyCache.php | 105 + .../classes/Swift/KeyCache/ArrayKeyCache.php | 206 + .../classes/Swift/KeyCache/DiskKeyCache.php | 321 ++ .../Swift/KeyCache/KeyCacheInputStream.php | 51 + .../classes/Swift/KeyCache/NullKeyCache.php | 115 + .../KeyCache/SimpleKeyCacheInputStream.php | 127 + .../classes/Swift/LoadBalancedTransport.php | 45 + .../lib/classes/Swift/MailTransport.php | 47 + .../swiftmailer/lib/classes/Swift/Mailer.php | 114 + .../Swift/Mailer/ArrayRecipientIterator.php | 55 + .../Swift/Mailer/RecipientIterator.php | 32 + .../lib/classes/Swift/MemorySpool.php | 110 + .../swiftmailer/lib/classes/Swift/Message.php | 289 ++ .../lib/classes/Swift/Mime/Attachment.php | 149 + .../classes/Swift/Mime/CharsetObserver.php | 24 + .../lib/classes/Swift/Mime/ContentEncoder.php | 34 + .../ContentEncoder/Base64ContentEncoder.php | 104 + .../ContentEncoder/NativeQpContentEncoder.php | 123 + .../ContentEncoder/PlainContentEncoder.php | 162 + .../Mime/ContentEncoder/QpContentEncoder.php | 134 + .../ContentEncoder/QpContentEncoderProxy.php | 98 + .../Mime/ContentEncoder/RawContentEncoder.php | 64 + .../lib/classes/Swift/Mime/EmbeddedFile.php | 45 + .../classes/Swift/Mime/EncodingObserver.php | 24 + .../lib/classes/Swift/Mime/Grammar.php | 176 + .../lib/classes/Swift/Mime/Header.php | 93 + .../lib/classes/Swift/Mime/HeaderEncoder.php | 24 + .../HeaderEncoder/Base64HeaderEncoder.php | 55 + .../Mime/HeaderEncoder/QpHeaderEncoder.php | 65 + .../lib/classes/Swift/Mime/HeaderFactory.php | 78 + .../lib/classes/Swift/Mime/HeaderSet.php | 169 + .../Swift/Mime/Headers/AbstractHeader.php | 501 ++ .../classes/Swift/Mime/Headers/DateHeader.php | 125 + .../Mime/Headers/IdentificationHeader.php | 180 + .../Swift/Mime/Headers/MailboxHeader.php | 351 ++ .../Swift/Mime/Headers/OpenDKIMHeader.php | 133 + .../Mime/Headers/ParameterizedHeader.php | 258 ++ .../classes/Swift/Mime/Headers/PathHeader.php | 143 + .../Swift/Mime/Headers/UnstructuredHeader.php | 112 + .../lib/classes/Swift/Mime/Message.php | 223 + .../lib/classes/Swift/Mime/MimeEntity.php | 117 + .../lib/classes/Swift/Mime/MimePart.php | 212 + .../Swift/Mime/ParameterizedHeader.php | 34 + .../Swift/Mime/SimpleHeaderFactory.php | 193 + .../classes/Swift/Mime/SimpleHeaderSet.php | 414 ++ .../lib/classes/Swift/Mime/SimpleMessage.php | 655 +++ .../classes/Swift/Mime/SimpleMimeEntity.php | 846 ++++ .../lib/classes/Swift/MimePart.php | 59 + .../lib/classes/Swift/NullTransport.php | 36 + .../lib/classes/Swift/OutputByteStream.php | 46 + .../classes/Swift/Plugins/AntiFloodPlugin.php | 141 + .../Swift/Plugins/BandwidthMonitorPlugin.php | 164 + .../Swift/Plugins/Decorator/Replacements.php | 31 + .../classes/Swift/Plugins/DecoratorPlugin.php | 204 + .../Swift/Plugins/ImpersonatePlugin.php | 69 + .../lib/classes/Swift/Plugins/Logger.php | 36 + .../classes/Swift/Plugins/LoggerPlugin.php | 142 + .../Swift/Plugins/Loggers/ArrayLogger.php | 72 + .../Swift/Plugins/Loggers/EchoLogger.php | 58 + .../classes/Swift/Plugins/MessageLogger.php | 74 + .../Swift/Plugins/Pop/Pop3Connection.php | 31 + .../Swift/Plugins/Pop/Pop3Exception.php | 27 + .../Swift/Plugins/PopBeforeSmtpPlugin.php | 273 ++ .../Swift/Plugins/RedirectingPlugin.php | 213 + .../lib/classes/Swift/Plugins/Reporter.php | 32 + .../classes/Swift/Plugins/ReporterPlugin.php | 61 + .../Swift/Plugins/Reporters/HitReporter.php | 59 + .../Swift/Plugins/Reporters/HtmlReporter.php | 39 + .../lib/classes/Swift/Plugins/Sleeper.php | 24 + .../classes/Swift/Plugins/ThrottlerPlugin.php | 200 + .../lib/classes/Swift/Plugins/Timer.php | 24 + .../lib/classes/Swift/Preferences.php | 100 + .../Swift/ReplacementFilterFactory.php | 27 + .../classes/Swift/RfcComplianceException.php | 27 + .../lib/classes/Swift/SendmailTransport.php | 45 + .../lib/classes/Swift/SignedMessage.php | 23 + .../swiftmailer/lib/classes/Swift/Signer.php | 20 + .../lib/classes/Swift/Signers/BodySigner.php | 33 + .../lib/classes/Swift/Signers/DKIMSigner.php | 712 +++ .../classes/Swift/Signers/DomainKeySigner.php | 524 +++ .../classes/Swift/Signers/HeaderSigner.php | 65 + .../classes/Swift/Signers/OpenDKIMSigner.php | 190 + .../lib/classes/Swift/Signers/SMimeSigner.php | 436 ++ .../lib/classes/Swift/SmtpTransport.php | 58 + .../swiftmailer/lib/classes/Swift/Spool.php | 53 + .../lib/classes/Swift/SpoolTransport.php | 47 + .../lib/classes/Swift/StreamFilter.php | 35 + .../ByteArrayReplacementFilter.php | 170 + .../StreamFilters/StringReplacementFilter.php | 70 + .../StringReplacementFilterFactory.php | 45 + .../lib/classes/Swift/SwiftException.php | 29 + .../lib/classes/Swift/Transport.php | 54 + .../Swift/Transport/AbstractSmtpTransport.php | 499 ++ .../Esmtp/Auth/CramMd5Authenticator.php | 81 + .../Esmtp/Auth/LoginAuthenticator.php | 51 + .../Esmtp/Auth/NTLMAuthenticator.php | 725 +++ .../Esmtp/Auth/PlainAuthenticator.php | 50 + .../Esmtp/Auth/XOAuth2Authenticator.php | 70 + .../Swift/Transport/Esmtp/AuthHandler.php | 263 ++ .../Swift/Transport/Esmtp/Authenticator.php | 35 + .../classes/Swift/Transport/EsmtpHandler.php | 86 + .../Swift/Transport/EsmtpTransport.php | 411 ++ .../Swift/Transport/FailoverTransport.php | 88 + .../lib/classes/Swift/Transport/IoBuffer.php | 67 + .../Swift/Transport/LoadBalancedTransport.php | 183 + .../classes/Swift/Transport/MailInvoker.php | 32 + .../classes/Swift/Transport/MailTransport.php | 297 ++ .../classes/Swift/Transport/NullTransport.php | 93 + .../Swift/Transport/SendmailTransport.php | 160 + .../Swift/Transport/SimpleMailInvoker.php | 39 + .../lib/classes/Swift/Transport/SmtpAgent.php | 36 + .../Swift/Transport/SpoolTransport.php | 117 + .../classes/Swift/Transport/StreamBuffer.php | 334 ++ .../lib/classes/Swift/TransportException.php | 29 + .../lib/classes/Swift/Validate.php | 43 + .../lib/dependency_maps/cache_deps.php | 23 + .../lib/dependency_maps/message_deps.php | 9 + .../lib/dependency_maps/mime_deps.php | 123 + .../lib/dependency_maps/transport_deps.php | 76 + .../swiftmailer/lib/mime_types.php | 1007 ++++ .../swiftmailer/lib/preferences.php | 25 + .../swiftmailer/lib/swift_init.php | 28 + .../swiftmailer/lib/swift_required.php | 30 + .../swiftmailer/lib/swift_required_pear.php | 30 + .../lib/swiftmailer_generate_mimes_config.php | 193 + .../swiftmailer/swiftmailer/phpunit.xml.dist | 39 + .../tests/IdenticalBinaryConstraint.php | 62 + .../swiftmailer/tests/StreamCollector.php | 11 + .../tests/SwiftMailerSmokeTestCase.php | 46 + .../swiftmailer/tests/SwiftMailerTestCase.php | 34 + .../_samples/charsets/iso-2022-jp/one.txt | 11 + .../_samples/charsets/iso-8859-1/one.txt | 19 + .../tests/_samples/charsets/utf-8/one.txt | 22 + .../tests/_samples/charsets/utf-8/three.txt | 45 + .../tests/_samples/charsets/utf-8/two.txt | 3 + .../tests/_samples/dkim/dkim.test.priv | 15 + .../tests/_samples/dkim/dkim.test.pub | 6 + .../swiftmailer/tests/_samples/files/data.txt | 1 + .../tests/_samples/files/swiftmailer.png | Bin 0 -> 3194 bytes .../tests/_samples/files/textfile.zip | Bin 0 -> 202 bytes .../swiftmailer/tests/_samples/smime/CA.srl | 1 + .../swiftmailer/tests/_samples/smime/ca.crt | 21 + .../swiftmailer/tests/_samples/smime/ca.key | 27 + .../tests/_samples/smime/create-cert.sh | 40 + .../tests/_samples/smime/encrypt.crt | 19 + .../tests/_samples/smime/encrypt.key | 27 + .../tests/_samples/smime/encrypt2.crt | 19 + .../tests/_samples/smime/encrypt2.key | 27 + .../tests/_samples/smime/intermediate.crt | 19 + .../tests/_samples/smime/intermediate.key | 27 + .../swiftmailer/tests/_samples/smime/sign.crt | 19 + .../swiftmailer/tests/_samples/smime/sign.key | 27 + .../tests/_samples/smime/sign2.crt | 19 + .../tests/_samples/smime/sign2.key | 27 + .../tests/acceptance.conf.php.default | 37 + .../Swift/AttachmentAcceptanceTest.php | 12 + .../FileByteStreamAcceptanceTest.php | 162 + ...leCharacterReaderFactoryAcceptanceTest.php | 179 + .../DependencyContainerAcceptanceTest.php | 24 + .../Swift/EmbeddedFileAcceptanceTest.php | 12 + .../Encoder/Base64EncoderAcceptanceTest.php | 45 + .../Swift/Encoder/QpEncoderAcceptanceTest.php | 54 + .../Encoder/Rfc2231EncoderAcceptanceTest.php | 50 + .../Swift/EncodingAcceptanceTest.php | 30 + .../KeyCache/ArrayKeyCacheAcceptanceTest.php | 173 + .../KeyCache/DiskKeyCacheAcceptanceTest.php | 173 + .../Swift/MessageAcceptanceTest.php | 55 + .../Swift/Mime/AttachmentAcceptanceTest.php | 123 + .../Base64ContentEncoderAcceptanceTest.php | 56 + .../NativeQpContentEncoderAcceptanceTest.php | 88 + .../PlainContentEncoderAcceptanceTest.php | 88 + .../QpContentEncoderAcceptanceTest.php | 160 + .../Swift/Mime/EmbeddedFileAcceptanceTest.php | 136 + .../Base64HeaderEncoderAcceptanceTest.php | 32 + .../Swift/Mime/MimePartAcceptanceTest.php | 127 + .../Mime/SimpleMessageAcceptanceTest.php | 1249 +++++ .../Swift/MimePartAcceptanceTest.php | 15 + .../AbstractStreamBufferAcceptanceTest.php | 131 + .../BasicSocketAcceptanceTest.php | 33 + .../StreamBuffer/ProcessAcceptanceTest.php | 26 + .../StreamBuffer/SocketTimeoutTest.php | 67 + .../StreamBuffer/SslSocketAcceptanceTest.php | 40 + .../StreamBuffer/TlsSocketAcceptanceTest.php | 39 + .../swiftmailer/tests/bootstrap.php | 21 + .../tests/bug/Swift/Bug111Test.php | 42 + .../tests/bug/Swift/Bug118Test.php | 20 + .../tests/bug/Swift/Bug206Test.php | 38 + .../tests/bug/Swift/Bug274Test.php | 21 + .../swiftmailer/tests/bug/Swift/Bug34Test.php | 75 + .../swiftmailer/tests/bug/Swift/Bug35Test.php | 73 + .../swiftmailer/tests/bug/Swift/Bug38Test.php | 192 + .../tests/bug/Swift/Bug518Test.php | 38 + .../swiftmailer/tests/bug/Swift/Bug51Test.php | 110 + .../tests/bug/Swift/Bug534Test.php | 38 + .../tests/bug/Swift/Bug650Test.php | 36 + .../swiftmailer/tests/bug/Swift/Bug71Test.php | 20 + .../swiftmailer/tests/bug/Swift/Bug76Test.php | 71 + ...FileByteStreamConsecutiveReadCallsTest.php | 19 + .../tests/fixtures/MimeEntityFixture.php | 67 + .../swiftmailer/tests/smoke.conf.php.default | 63 + .../smoke/Swift/Smoke/AttachmentSmokeTest.php | 33 + .../smoke/Swift/Smoke/BasicSmokeTest.php | 23 + .../Smoke/HtmlWithAttachmentSmokeTest.php | 31 + .../Swift/Smoke/InternationalSmokeTest.php | 40 + .../Swift/ByteStream/ArrayByteStreamTest.php | 201 + .../GenericFixedWidthReaderTest.php | 43 + .../CharacterReader/UsAsciiReaderTest.php | 52 + .../Swift/CharacterReader/Utf8ReaderTest.php | 65 + .../ArrayCharacterStreamTest.php | 358 ++ .../unit/Swift/DependencyContainerTest.php | 176 + .../unit/Swift/Encoder/Base64EncoderTest.php | 173 + .../unit/Swift/Encoder/QpEncoderTest.php | 400 ++ .../unit/Swift/Encoder/Rfc2231EncoderTest.php | 141 + .../unit/Swift/Events/CommandEventTest.php | 34 + .../unit/Swift/Events/EventObjectTest.php | 32 + .../unit/Swift/Events/ResponseEventTest.php | 38 + .../tests/unit/Swift/Events/SendEventTest.php | 97 + .../Events/SimpleEventDispatcherTest.php | 142 + .../Swift/Events/TransportChangeEventTest.php | 30 + .../Events/TransportExceptionEventTest.php | 41 + .../unit/Swift/KeyCache/ArrayKeyCacheTest.php | 240 + .../SimpleKeyCacheInputStreamTest.php | 73 + .../Mailer/ArrayRecipientIteratorTest.php | 42 + .../tests/unit/Swift/MailerTest.php | 145 + .../tests/unit/Swift/MessageTest.php | 129 + .../Swift/Mime/AbstractMimeEntityTest.php | 1092 +++++ .../tests/unit/Swift/Mime/AttachmentTest.php | 318 ++ .../Base64ContentEncoderTest.php | 323 ++ .../PlainContentEncoderTest.php | 171 + .../ContentEncoder/QpContentEncoderTest.php | 516 +++ .../unit/Swift/Mime/EmbeddedFileTest.php | 55 + .../HeaderEncoder/Base64HeaderEncoderTest.php | 13 + .../HeaderEncoder/QpHeaderEncoderTest.php | 221 + .../Swift/Mime/Headers/DateHeaderTest.php | 69 + .../Mime/Headers/IdentificationHeaderTest.php | 189 + .../Swift/Mime/Headers/MailboxHeaderTest.php | 327 ++ .../Mime/Headers/ParameterizedHeaderTest.php | 398 ++ .../Swift/Mime/Headers/PathHeaderTest.php | 77 + .../Mime/Headers/UnstructuredHeaderTest.php | 355 ++ .../tests/unit/Swift/Mime/MimePartTest.php | 231 + .../Swift/Mime/SimpleHeaderFactoryTest.php | 166 + .../unit/Swift/Mime/SimpleHeaderSetTest.php | 737 +++ .../unit/Swift/Mime/SimpleMessageTest.php | 827 ++++ .../unit/Swift/Mime/SimpleMimeEntityTest.php | 9 + .../Swift/Plugins/AntiFloodPluginTest.php | 93 + .../Plugins/BandwidthMonitorPluginTest.php | 128 + .../Swift/Plugins/DecoratorPluginTest.php | 267 ++ .../unit/Swift/Plugins/LoggerPluginTest.php | 188 + .../Swift/Plugins/Loggers/ArrayLoggerTest.php | 65 + .../Swift/Plugins/Loggers/EchoLoggerTest.php | 24 + .../Swift/Plugins/PopBeforeSmtpPluginTest.php | 101 + .../Swift/Plugins/RedirectingPluginTest.php | 183 + .../unit/Swift/Plugins/ReporterPluginTest.php | 86 + .../Plugins/Reporters/HitReporterTest.php | 64 + .../Plugins/Reporters/HtmlReporterTest.php | 54 + .../Swift/Plugins/ThrottlerPluginTest.php | 102 + .../unit/Swift/Signers/DKIMSignerTest.php | 225 + .../unit/Swift/Signers/OpenDKIMSignerTest.php | 45 + .../unit/Swift/Signers/SMimeSignerTest.php | 554 +++ .../ByteArrayReplacementFilterTest.php | 129 + .../StringReplacementFilterFactoryTest.php | 36 + .../StringReplacementFilterTest.php | 59 + .../AbstractSmtpEventSupportTest.php | 558 +++ .../unit/Swift/Transport/AbstractSmtpTest.php | 1249 +++++ .../Esmtp/Auth/CramMd5AuthenticatorTest.php | 64 + .../Esmtp/Auth/LoginAuthenticatorTest.php | 64 + .../Esmtp/Auth/NTLMAuthenticatorTest.php | 213 + .../Esmtp/Auth/PlainAuthenticatorTest.php | 67 + .../Swift/Transport/Esmtp/AuthHandlerTest.php | 165 + .../EsmtpTransport/ExtensionSupportTest.php | 529 +++ .../Swift/Transport/EsmtpTransportTest.php | 297 ++ .../Swift/Transport/FailoverTransportTest.php | 518 +++ .../Transport/LoadBalancedTransportTest.php | 749 +++ .../Swift/Transport/MailTransportTest.php | 533 +++ .../Swift/Transport/SendmailTransportTest.php | 151 + .../unit/Swift/Transport/StreamBufferTest.php | 43 + lib/vendor/symfony/.editorconfig | 12 + lib/vendor/symfony/.gitignore | 8 + lib/vendor/symfony/.gitmodules | 7 + lib/vendor/symfony/.travis.yml | 48 + lib/vendor/symfony/CHANGELOG.md | 580 +++ lib/vendor/symfony/COPYRIGHT.md | 38 + lib/vendor/symfony/LICENSE.md | 19 + lib/vendor/symfony/README.md | 65 + lib/vendor/symfony/UPGRADE.md | 57 + lib/vendor/symfony/WHATS_NEW.md | 247 + lib/vendor/symfony/autoload.php | 5 + lib/vendor/symfony/browser-kit/.gitignore | 3 + lib/vendor/symfony/browser-kit/CHANGELOG.md | 42 + lib/vendor/symfony/browser-kit/Client.php | 736 +++ lib/vendor/symfony/browser-kit/Cookie.php | 320 ++ lib/vendor/symfony/browser-kit/CookieJar.php | 239 + .../Exception/BadMethodCallException.php | 16 + lib/vendor/symfony/browser-kit/History.php | 100 + lib/vendor/symfony/browser-kit/LICENSE | 19 + lib/vendor/symfony/browser-kit/README.md | 14 + lib/vendor/symfony/browser-kit/Request.php | 116 + lib/vendor/symfony/browser-kit/Response.php | 125 + .../symfony/browser-kit/Tests/ClientTest.php | 937 ++++ .../browser-kit/Tests/CookieJarTest.php | 252 + .../symfony/browser-kit/Tests/CookieTest.php | 217 + .../symfony/browser-kit/Tests/HistoryTest.php | 102 + .../symfony/browser-kit/Tests/RequestTest.php | 54 + .../browser-kit/Tests/ResponseTest.php | 77 + lib/vendor/symfony/browser-kit/composer.json | 41 + .../symfony/browser-kit/phpunit.xml.dist | 31 + lib/vendor/symfony/composer.json | 27 + lib/vendor/symfony/console/.gitignore | 3 + lib/vendor/symfony/console/Application.php | 1181 +++++ lib/vendor/symfony/console/CHANGELOG.md | 140 + .../symfony/console/Command/Command.php | 654 +++ .../symfony/console/Command/HelpCommand.php | 81 + .../symfony/console/Command/ListCommand.php | 90 + .../symfony/console/Command/LockableTrait.php | 71 + .../CommandLoader/CommandLoaderInterface.php | 37 + .../CommandLoader/ContainerCommandLoader.php | 55 + .../CommandLoader/FactoryCommandLoader.php | 62 + lib/vendor/symfony/console/ConsoleEvents.php | 47 + .../AddConsoleCommandPass.php | 98 + .../Descriptor/ApplicationDescription.php | 144 + .../symfony/console/Descriptor/Descriptor.php | 107 + .../Descriptor/DescriptorInterface.php | 31 + .../console/Descriptor/JsonDescriptor.php | 168 + .../console/Descriptor/MarkdownDescriptor.php | 182 + .../console/Descriptor/TextDescriptor.php | 342 ++ .../console/Descriptor/XmlDescriptor.php | 245 + .../console/Event/ConsoleCommandEvent.php | 60 + .../console/Event/ConsoleErrorEvent.php | 58 + .../symfony/console/Event/ConsoleEvent.php | 67 + .../console/Event/ConsoleTerminateEvent.php | 53 + .../console/EventListener/ErrorListener.php | 91 + .../Exception/CommandNotFoundException.php | 43 + .../console/Exception/ExceptionInterface.php | 21 + .../Exception/InvalidArgumentException.php | 19 + .../Exception/InvalidOptionException.php | 21 + .../console/Exception/LogicException.php | 19 + .../Exception/NamespaceNotFoundException.php | 21 + .../console/Exception/RuntimeException.php | 19 + .../console/Formatter/OutputFormatter.php | 282 ++ .../Formatter/OutputFormatterInterface.php | 71 + .../Formatter/OutputFormatterStyle.php | 203 + .../OutputFormatterStyleInterface.php | 62 + .../Formatter/OutputFormatterStyleStack.php | 110 + .../WrappableOutputFormatterInterface.php | 25 + .../console/Helper/DebugFormatterHelper.php | 127 + .../console/Helper/DescriptorHelper.php | 94 + .../console/Helper/FormatterHelper.php | 106 + lib/vendor/symfony/console/Helper/Helper.php | 138 + .../console/Helper/HelperInterface.php | 39 + .../symfony/console/Helper/HelperSet.php | 108 + .../console/Helper/InputAwareHelper.php | 33 + .../symfony/console/Helper/ProcessHelper.php | 156 + .../symfony/console/Helper/ProgressBar.php | 527 +++ .../console/Helper/ProgressIndicator.php | 269 ++ .../symfony/console/Helper/QuestionHelper.php | 447 ++ .../console/Helper/SymfonyQuestionHelper.php | 96 + lib/vendor/symfony/console/Helper/Table.php | 813 ++++ .../symfony/console/Helper/TableCell.php | 68 + .../symfony/console/Helper/TableRows.php | 32 + .../symfony/console/Helper/TableSeparator.php | 25 + .../symfony/console/Helper/TableStyle.php | 458 ++ .../symfony/console/Input/ArgvInput.php | 365 ++ .../symfony/console/Input/ArrayInput.php | 206 + lib/vendor/symfony/console/Input/Input.php | 203 + .../symfony/console/Input/InputArgument.php | 129 + .../console/Input/InputAwareInterface.php | 26 + .../symfony/console/Input/InputDefinition.php | 404 ++ .../symfony/console/Input/InputInterface.php | 163 + .../symfony/console/Input/InputOption.php | 208 + .../Input/StreamableInputInterface.php | 37 + .../symfony/console/Input/StringInput.php | 72 + lib/vendor/symfony/console/LICENSE | 19 + .../symfony/console/Logger/ConsoleLogger.php | 124 + .../symfony/console/Output/BufferedOutput.php | 45 + .../symfony/console/Output/ConsoleOutput.php | 161 + .../console/Output/ConsoleOutputInterface.php | 32 + .../console/Output/ConsoleSectionOutput.php | 141 + .../symfony/console/Output/NullOutput.php | 123 + lib/vendor/symfony/console/Output/Output.php | 177 + .../console/Output/OutputInterface.php | 114 + .../symfony/console/Output/StreamOutput.php | 124 + .../console/Question/ChoiceQuestion.php | 184 + .../console/Question/ConfirmationQuestion.php | 59 + .../symfony/console/Question/Question.php | 246 + lib/vendor/symfony/console/README.md | 20 + .../console/Resources/bin/hiddeninput.exe | Bin 0 -> 9216 bytes .../symfony/console/Style/OutputStyle.php | 155 + .../symfony/console/Style/StyleInterface.php | 154 + .../symfony/console/Style/SymfonyStyle.php | 438 ++ lib/vendor/symfony/console/Terminal.php | 137 + .../console/Tester/ApplicationTester.php | 77 + .../symfony/console/Tester/CommandTester.php | 78 + .../symfony/console/Tester/TesterTrait.php | 177 + .../symfony/console/Tests/ApplicationTest.php | 1814 ++++++++ .../console/Tests/Command/CommandTest.php | 436 ++ .../console/Tests/Command/HelpCommandTest.php | 71 + .../console/Tests/Command/ListCommandTest.php | 113 + .../Tests/Command/LockableTraitTest.php | 67 + .../ContainerCommandLoaderTest.php | 61 + .../FactoryCommandLoaderTest.php | 60 + .../AddConsoleCommandPassTest.php | 258 ++ .../Descriptor/AbstractDescriptorTest.php | 107 + .../Tests/Descriptor/JsonDescriptorTest.php | 35 + .../Descriptor/MarkdownDescriptorTest.php | 45 + .../Tests/Descriptor/ObjectsProvider.php | 82 + .../Tests/Descriptor/TextDescriptorTest.php | 53 + .../Tests/Descriptor/XmlDescriptorTest.php | 27 + .../Tests/EventListener/ErrorListenerTest.php | 156 + .../console/Tests/Fixtures/BarBucCommand.php | 11 + .../Tests/Fixtures/DescriptorApplication1.php | 18 + .../Tests/Fixtures/DescriptorApplication2.php | 26 + .../DescriptorApplicationMbString.php | 24 + .../Tests/Fixtures/DescriptorCommand1.php | 27 + .../Tests/Fixtures/DescriptorCommand2.php | 32 + .../Tests/Fixtures/DescriptorCommand3.php | 27 + .../Tests/Fixtures/DescriptorCommand4.php | 25 + .../Fixtures/DescriptorCommandMbString.php | 32 + .../console/Tests/Fixtures/DummyOutput.php | 36 + .../console/Tests/Fixtures/Foo1Command.php | 26 + .../console/Tests/Fixtures/Foo2Command.php | 21 + .../console/Tests/Fixtures/Foo3Command.php | 29 + .../console/Tests/Fixtures/Foo4Command.php | 11 + .../console/Tests/Fixtures/Foo5Command.php | 10 + .../console/Tests/Fixtures/Foo6Command.php | 11 + .../console/Tests/Fixtures/FooCommand.php | 33 + .../Tests/Fixtures/FooLock2Command.php | 28 + .../console/Tests/Fixtures/FooLockCommand.php | 27 + .../console/Tests/Fixtures/FooOptCommand.php | 36 + .../Fixtures/FooSameCaseLowercaseCommand.php | 11 + .../Fixtures/FooSameCaseUppercaseCommand.php | 11 + .../Fixtures/FooSubnamespaced1Command.php | 26 + .../Fixtures/FooSubnamespaced2Command.php | 26 + .../Tests/Fixtures/FooWithoutAliasCommand.php | 21 + .../console/Tests/Fixtures/FoobarCommand.php | 25 + .../Style/SymfonyStyle/command/command_0.php | 11 + .../Style/SymfonyStyle/command/command_1.php | 13 + .../Style/SymfonyStyle/command/command_10.php | 17 + .../Style/SymfonyStyle/command/command_11.php | 12 + .../Style/SymfonyStyle/command/command_12.php | 13 + .../Style/SymfonyStyle/command/command_13.php | 14 + .../Style/SymfonyStyle/command/command_14.php | 17 + .../Style/SymfonyStyle/command/command_15.php | 14 + .../Style/SymfonyStyle/command/command_16.php | 15 + .../Style/SymfonyStyle/command/command_17.php | 13 + .../Style/SymfonyStyle/command/command_2.php | 16 + .../Style/SymfonyStyle/command/command_3.php | 12 + .../Style/SymfonyStyle/command/command_4.php | 34 + .../command/command_4_with_iterators.php | 34 + .../Style/SymfonyStyle/command/command_5.php | 37 + .../Style/SymfonyStyle/command/command_6.php | 16 + .../Style/SymfonyStyle/command/command_7.php | 15 + .../Style/SymfonyStyle/command/command_8.php | 26 + .../Style/SymfonyStyle/command/command_9.php | 11 + .../command/interactive_command_1.php | 19 + .../output/interactive_output_1.txt | 7 + .../Style/SymfonyStyle/output/output_0.txt | 3 + .../Style/SymfonyStyle/output/output_1.txt | 9 + .../Style/SymfonyStyle/output/output_10.txt | 7 + .../Style/SymfonyStyle/output/output_11.txt | 4 + .../Style/SymfonyStyle/output/output_12.txt | 6 + .../Style/SymfonyStyle/output/output_13.txt | 7 + .../Style/SymfonyStyle/output/output_14.txt | 6 + .../Style/SymfonyStyle/output/output_15.txt | 7 + .../Style/SymfonyStyle/output/output_16.txt | 8 + .../Style/SymfonyStyle/output/output_17.txt | 7 + .../Style/SymfonyStyle/output/output_2.txt | 13 + .../Style/SymfonyStyle/output/output_3.txt | 7 + .../Style/SymfonyStyle/output/output_4.txt | 32 + .../output/output_4_with_iterators.txt | 32 + .../Style/SymfonyStyle/output/output_5.txt | 18 + .../Style/SymfonyStyle/output/output_6.txt | 6 + .../Style/SymfonyStyle/output/output_7.txt | 5 + .../Style/SymfonyStyle/output/output_8.txt | 9 + .../Style/SymfonyStyle/output/output_9.txt | 5 + .../console/Tests/Fixtures/TestCommand.php | 28 + .../console/Tests/Fixtures/TestTiti.php | 21 + .../console/Tests/Fixtures/TestToto.php | 22 + .../console/Tests/Fixtures/application_1.json | 156 + .../console/Tests/Fixtures/application_1.md | 172 + .../console/Tests/Fixtures/application_1.txt | 17 + .../console/Tests/Fixtures/application_1.xml | 104 + .../console/Tests/Fixtures/application_2.json | 509 +++ .../console/Tests/Fixtures/application_2.md | 431 ++ .../console/Tests/Fixtures/application_2.txt | 21 + .../console/Tests/Fixtures/application_2.xml | 254 + .../application_filtered_namespace.txt | 16 + .../Tests/Fixtures/application_gethelp.txt | 1 + .../Tests/Fixtures/application_mbstring.md | 269 ++ .../Tests/Fixtures/application_mbstring.txt | 19 + .../Fixtures/application_renderexception1.txt | 5 + .../Fixtures/application_renderexception2.txt | 7 + .../Fixtures/application_renderexception3.txt | 18 + .../application_renderexception3decorated.txt | 18 + .../Fixtures/application_renderexception4.txt | 6 + ...plication_renderexception_doublewidth1.txt | 8 + ..._renderexception_doublewidth1decorated.txt | 8 + ...plication_renderexception_doublewidth2.txt | 9 + ...plication_renderexception_escapeslines.txt | 9 + ...application_renderexception_linebreaks.txt | 11 + .../Tests/Fixtures/application_run1.txt | 17 + .../Tests/Fixtures/application_run2.txt | 29 + .../Tests/Fixtures/application_run3.txt | 29 + .../Tests/Fixtures/application_run4.txt | 1 + .../console/Tests/Fixtures/command_1.json | 15 + .../console/Tests/Fixtures/command_1.md | 12 + .../console/Tests/Fixtures/command_1.txt | 10 + .../console/Tests/Fixtures/command_1.xml | 12 + .../console/Tests/Fixtures/command_2.json | 33 + .../console/Tests/Fixtures/command_2.md | 29 + .../console/Tests/Fixtures/command_2.txt | 16 + .../console/Tests/Fixtures/command_2.xml | 21 + .../Tests/Fixtures/command_mbstring.md | 29 + .../Tests/Fixtures/command_mbstring.txt | 16 + .../Tests/Fixtures/input_argument_1.json | 7 + .../Tests/Fixtures/input_argument_1.md | 5 + .../Tests/Fixtures/input_argument_1.txt | 1 + .../Tests/Fixtures/input_argument_1.xml | 5 + .../Tests/Fixtures/input_argument_2.json | 7 + .../Tests/Fixtures/input_argument_2.md | 7 + .../Tests/Fixtures/input_argument_2.txt | 1 + .../Tests/Fixtures/input_argument_2.xml | 5 + .../Tests/Fixtures/input_argument_3.json | 7 + .../Tests/Fixtures/input_argument_3.md | 7 + .../Tests/Fixtures/input_argument_3.txt | 1 + .../Tests/Fixtures/input_argument_3.xml | 7 + .../Tests/Fixtures/input_argument_4.json | 7 + .../Tests/Fixtures/input_argument_4.md | 8 + .../Tests/Fixtures/input_argument_4.txt | 2 + .../Tests/Fixtures/input_argument_4.xml | 6 + ...input_argument_with_default_inf_value.json | 7 + .../input_argument_with_default_inf_value.md | 7 + .../input_argument_with_default_inf_value.txt | 1 + .../input_argument_with_default_inf_value.xml | 7 + .../Fixtures/input_argument_with_style.json | 7 + .../Fixtures/input_argument_with_style.md | 7 + .../Fixtures/input_argument_with_style.txt | 1 + .../Fixtures/input_argument_with_style.xml | 7 + .../Tests/Fixtures/input_definition_1.json | 4 + .../Tests/Fixtures/input_definition_1.md} | 0 .../Tests/Fixtures/input_definition_1.txt} | 0 .../Tests/Fixtures/input_definition_1.xml | 5 + .../Tests/Fixtures/input_definition_2.json | 12 + .../Tests/Fixtures/input_definition_2.md | 7 + .../Tests/Fixtures/input_definition_2.txt | 2 + .../Tests/Fixtures/input_definition_2.xml | 10 + .../Tests/Fixtures/input_definition_3.json | 14 + .../Tests/Fixtures/input_definition_3.md | 8 + .../Tests/Fixtures/input_definition_3.txt | 2 + .../Tests/Fixtures/input_definition_3.xml | 9 + .../Tests/Fixtures/input_definition_4.json | 22 + .../Tests/Fixtures/input_definition_4.md | 16 + .../Tests/Fixtures/input_definition_4.txt | 5 + .../Tests/Fixtures/input_definition_4.xml | 14 + .../Tests/Fixtures/input_option_1.json | 9 + .../console/Tests/Fixtures/input_option_1.md | 6 + .../console/Tests/Fixtures/input_option_1.txt | 1 + .../console/Tests/Fixtures/input_option_1.xml | 4 + .../Tests/Fixtures/input_option_2.json | 9 + .../console/Tests/Fixtures/input_option_2.md | 8 + .../console/Tests/Fixtures/input_option_2.txt | 1 + .../console/Tests/Fixtures/input_option_2.xml | 7 + .../Tests/Fixtures/input_option_3.json | 9 + .../console/Tests/Fixtures/input_option_3.md | 8 + .../console/Tests/Fixtures/input_option_3.txt | 1 + .../console/Tests/Fixtures/input_option_3.xml | 5 + .../Tests/Fixtures/input_option_4.json | 9 + .../console/Tests/Fixtures/input_option_4.md | 8 + .../console/Tests/Fixtures/input_option_4.txt | 1 + .../console/Tests/Fixtures/input_option_4.xml | 5 + .../Tests/Fixtures/input_option_5.json | 9 + .../console/Tests/Fixtures/input_option_5.md | 9 + .../console/Tests/Fixtures/input_option_5.txt | 2 + .../console/Tests/Fixtures/input_option_5.xml | 6 + .../Tests/Fixtures/input_option_6.json | 9 + .../console/Tests/Fixtures/input_option_6.md | 8 + .../console/Tests/Fixtures/input_option_6.txt | 1 + .../console/Tests/Fixtures/input_option_6.xml | 5 + .../input_option_with_default_inf_value.json | 9 + .../input_option_with_default_inf_value.md | 8 + .../input_option_with_default_inf_value.txt | 1 + .../input_option_with_default_inf_value.xml | 7 + .../Fixtures/input_option_with_style.json | 9 + .../Tests/Fixtures/input_option_with_style.md | 8 + .../Fixtures/input_option_with_style.txt | 1 + .../Fixtures/input_option_with_style.xml | 7 + .../input_option_with_style_array.json | 12 + .../Fixtures/input_option_with_style_array.md | 8 + .../input_option_with_style_array.txt | 1 + .../input_option_with_style_array.xml | 8 + .../OutputFormatterStyleStackTest.php | 71 + .../Formatter/OutputFormatterStyleTest.php | 100 + .../Tests/Formatter/OutputFormatterTest.php | 355 ++ .../Helper/AbstractQuestionHelperTest.php | 34 + .../Tests/Helper/FormatterHelperTest.php | 129 + .../console/Tests/Helper/HelperSetTest.php | 127 + .../console/Tests/Helper/HelperTest.php | 55 + .../Tests/Helper/ProcessHelperTest.php | 133 + .../console/Tests/Helper/ProgressBarTest.php | 912 ++++ .../Tests/Helper/ProgressIndicatorTest.php | 183 + .../Tests/Helper/QuestionHelperTest.php | 715 +++ .../Helper/SymfonyQuestionHelperTest.php | 168 + .../console/Tests/Helper/TableStyleTest.php | 28 + .../console/Tests/Helper/TableTest.php | 1199 +++++ .../console/Tests/Input/ArgvInputTest.php | 466 ++ .../console/Tests/Input/ArrayInputTest.php | 177 + .../console/Tests/Input/InputArgumentTest.php | 103 + .../Tests/Input/InputDefinitionTest.php | 407 ++ .../console/Tests/Input/InputOptionTest.php | 196 + .../symfony/console/Tests/Input/InputTest.php | 149 + .../console/Tests/Input/StringInputTest.php | 87 + .../Tests/Logger/ConsoleLoggerTest.php | 215 + .../Tests/Output/ConsoleOutputTest.php | 42 + .../Tests/Output/ConsoleSectionOutputTest.php | 163 + .../console/Tests/Output/NullOutputTest.php | 88 + .../console/Tests/Output/OutputTest.php | 189 + .../console/Tests/Output/StreamOutputTest.php | 61 + .../Question/ConfirmationQuestionTest.php | 62 + .../console/Tests/Style/SymfonyStyleTest.php | 118 + .../symfony/console/Tests/TerminalTest.php | 59 + .../Tests/Tester/ApplicationTesterTest.php | 113 + .../Tests/Tester/CommandTesterTest.php | 235 + lib/vendor/symfony/console/composer.json | 56 + lib/vendor/symfony/console/phpunit.xml.dist | 41 + lib/vendor/symfony/contracts/.gitignore | 3 + lib/vendor/symfony/contracts/CHANGELOG.md | 19 + .../contracts/Cache/CacheInterface.php | 57 + .../symfony/contracts/Cache/CacheTrait.php | 76 + .../contracts/Cache/CallbackInterface.php | 30 + .../symfony/contracts/Cache/ItemInterface.php | 60 + .../Cache/TagAwareCacheInterface.php | 38 + .../contracts/EventDispatcher/Event.php | 96 + .../EventDispatcherInterface.php | 58 + .../contracts/HttpClient/ChunkInterface.php | 66 + .../Exception/ClientExceptionInterface.php | 23 + .../Exception/ExceptionInterface.php | 23 + .../Exception/HttpExceptionInterface.php | 26 + .../RedirectionExceptionInterface.php | 23 + .../Exception/ServerExceptionInterface.php | 23 + .../Exception/TransportExceptionInterface.php | 23 + .../HttpClient/HttpClientInterface.php | 91 + .../HttpClient/ResponseInterface.php | 101 + .../HttpClient/ResponseStreamInterface.php | 26 + .../HttpClient/Test/Fixtures/web/index.php | 124 + .../HttpClient/Test/HttpClientTestCase.php | 733 +++ .../HttpClient/Test/TestHttpServer.php | 49 + lib/vendor/symfony/contracts/LICENSE | 19 + lib/vendor/symfony/contracts/README.md | 70 + .../contracts/Service/ResetInterface.php | 30 + .../contracts/Service/ServiceLocatorTrait.php | 120 + .../Service/ServiceProviderInterface.php | 36 + .../Service/ServiceSubscriberInterface.php | 53 + .../Service/ServiceSubscriberTrait.php | 61 + .../contracts/Tests/Cache/CacheTraitTest.php | 165 + .../Tests/Service/ServiceLocatorTest.php | 94 + .../Service/ServiceSubscriberTraitTest.php | 65 + .../Tests/Translation/TranslatorTest.php | 353 ++ .../Translation/LocaleAwareInterface.php | 31 + .../Translation/TranslatorInterface.php | 65 + .../contracts/Translation/TranslatorTrait.php | 255 ++ lib/vendor/symfony/contracts/composer.json | 47 + lib/vendor/symfony/contracts/phpunit.xml.dist | 31 + lib/vendor/symfony/css-selector/.gitignore | 3 + lib/vendor/symfony/css-selector/CHANGELOG.md | 13 + .../css-selector/CssSelectorConverter.php | 65 + .../Exception/ExceptionInterface.php | 24 + .../Exception/ExpressionErrorException.php | 24 + .../Exception/InternalErrorException.php | 24 + .../css-selector/Exception/ParseException.php | 24 + .../Exception/SyntaxErrorException.php | 73 + lib/vendor/symfony/css-selector/LICENSE | 19 + .../css-selector/Node/AbstractNode.php | 42 + .../css-selector/Node/AttributeNode.php | 85 + .../symfony/css-selector/Node/ClassNode.php | 60 + .../Node/CombinedSelectorNode.php | 69 + .../symfony/css-selector/Node/ElementNode.php | 72 + .../css-selector/Node/FunctionNode.php | 81 + .../symfony/css-selector/Node/HashNode.php | 60 + .../css-selector/Node/NegationNode.php | 66 + .../css-selector/Node/NodeInterface.php | 31 + .../symfony/css-selector/Node/PseudoNode.php | 60 + .../css-selector/Node/SelectorNode.php | 60 + .../symfony/css-selector/Node/Specificity.php | 75 + .../Parser/Handler/CommentHandler.php | 48 + .../Parser/Handler/HandlerInterface.php | 33 + .../Parser/Handler/HashHandler.php | 58 + .../Parser/Handler/IdentifierHandler.php | 58 + .../Parser/Handler/NumberHandler.php | 54 + .../Parser/Handler/StringHandler.php | 77 + .../Parser/Handler/WhitespaceHandler.php | 46 + .../symfony/css-selector/Parser/Parser.php | 353 ++ .../css-selector/Parser/ParserInterface.php | 34 + .../symfony/css-selector/Parser/Reader.php | 86 + .../Parser/Shortcut/ClassParser.php | 51 + .../Parser/Shortcut/ElementParser.php | 47 + .../Parser/Shortcut/EmptyStringParser.php | 46 + .../Parser/Shortcut/HashParser.php | 51 + .../symfony/css-selector/Parser/Token.php | 111 + .../css-selector/Parser/TokenStream.php | 175 + .../Parser/Tokenizer/Tokenizer.php | 75 + .../Parser/Tokenizer/TokenizerEscaping.php | 63 + .../Parser/Tokenizer/TokenizerPatterns.php | 89 + lib/vendor/symfony/css-selector/README.md | 20 + .../Tests/CssSelectorConverterTest.php | 76 + .../Tests/Node/AbstractNodeTest.php | 34 + .../Tests/Node/AttributeNodeTest.php | 37 + .../css-selector/Tests/Node/ClassNodeTest.php | 33 + .../Tests/Node/CombinedSelectorNodeTest.php | 35 + .../Tests/Node/ElementNodeTest.php | 35 + .../Tests/Node/FunctionNodeTest.php | 47 + .../css-selector/Tests/Node/HashNodeTest.php | 33 + .../Tests/Node/NegationNodeTest.php | 33 + .../Tests/Node/PseudoNodeTest.php | 32 + .../Tests/Node/SelectorNodeTest.php | 34 + .../Tests/Node/SpecificityTest.php | 63 + .../Parser/Handler/AbstractHandlerTest.php | 70 + .../Parser/Handler/CommentHandlerTest.php | 55 + .../Tests/Parser/Handler/HashHandlerTest.php | 49 + .../Parser/Handler/IdentifierHandlerTest.php | 49 + .../Parser/Handler/NumberHandlerTest.php | 50 + .../Parser/Handler/StringHandlerTest.php | 50 + .../Parser/Handler/WhitespaceHandlerTest.php | 44 + .../css-selector/Tests/Parser/ParserTest.php | 253 + .../css-selector/Tests/Parser/ReaderTest.php | 102 + .../Tests/Parser/Shortcut/ClassParserTest.php | 45 + .../Parser/Shortcut/ElementParserTest.php | 44 + .../Parser/Shortcut/EmptyStringParserTest.php | 36 + .../Tests/Parser/Shortcut/HashParserTest.php | 45 + .../Tests/Parser/TokenStreamTest.php | 96 + .../Tests/XPath/Fixtures/ids.html | 48 + .../Tests/XPath/Fixtures/lang.xml | 11 + .../Tests/XPath/Fixtures/shakespear.html | 308 ++ .../Tests/XPath/TranslatorTest.php | 398 ++ .../XPath/Extension/AbstractExtension.php | 65 + .../Extension/AttributeMatchingExtension.php | 119 + .../XPath/Extension/CombinationExtension.php | 83 + .../XPath/Extension/ExtensionInterface.php | 69 + .../XPath/Extension/FunctionExtension.php | 171 + .../XPath/Extension/HtmlExtension.php | 213 + .../XPath/Extension/NodeExtension.php | 197 + .../XPath/Extension/PseudoClassExtension.php | 148 + .../symfony/css-selector/XPath/Translator.php | 224 + .../XPath/TranslatorInterface.php | 37 + .../symfony/css-selector/XPath/XPathExpr.php | 102 + lib/vendor/symfony/css-selector/composer.json | 37 + .../symfony/css-selector/phpunit.xml.dist | 31 + lib/vendor/symfony/data/bin/changelog.php | 10 +- .../symfony/data/bin/check_configuration.php | 12 +- lib/vendor/symfony/data/bin/release.php | 10 +- .../symfony/data/bin/sandbox_installer.php | 8 +- lib/vendor/symfony/data/bin/symfony | 4 +- lib/vendor/symfony/dom-crawler/.gitignore | 3 + .../dom-crawler/AbstractUriElement.php | 202 + lib/vendor/symfony/dom-crawler/CHANGELOG.md | 61 + lib/vendor/symfony/dom-crawler/Crawler.php | 1174 +++++ .../dom-crawler/Field/ChoiceFormField.php | 320 ++ .../dom-crawler/Field/FileFormField.php | 108 + .../symfony/dom-crawler/Field/FormField.php | 134 + .../dom-crawler/Field/InputFormField.php | 46 + .../dom-crawler/Field/TextareaFormField.php | 37 + lib/vendor/symfony/dom-crawler/Form.php | 489 ++ .../symfony/dom-crawler/FormFieldRegistry.php | 213 + lib/vendor/symfony/dom-crawler/Image.php | 37 + lib/vendor/symfony/dom-crawler/LICENSE | 19 + lib/vendor/symfony/dom-crawler/Link.php | 34 + lib/vendor/symfony/dom-crawler/README.md | 13 + .../symfony/dom-crawler/Tests/CrawlerTest.php | 1300 ++++++ .../Tests/Field/ChoiceFormFieldTest.php | 404 ++ .../Tests/Field/FileFormFieldTest.php | 114 + .../dom-crawler/Tests/Field/FormFieldTest.php | 72 + .../Tests/Field/FormFieldTestCase.php | 29 + .../Tests/Field/InputFormFieldTest.php | 49 + .../Tests/Field/TextareaFormFieldTest.php | 46 + .../dom-crawler/Tests/Fixtures/no-extension | 1 + .../Tests/Fixtures/windows-1250.html | 8 + .../symfony/dom-crawler/Tests/FormTest.php | 970 ++++ .../symfony/dom-crawler/Tests/ImageTest.php | 70 + .../symfony/dom-crawler/Tests/LinkTest.php | 171 + lib/vendor/symfony/dom-crawler/composer.json | 41 + .../symfony/dom-crawler/phpunit.xml.dist | 31 + .../symfony/event-dispatcher/.gitignore | 3 + .../symfony/event-dispatcher/CHANGELOG.md | 55 + .../Debug/TraceableEventDispatcher.php | 349 ++ .../TraceableEventDispatcherInterface.php | 37 + .../Debug/WrappedListener.php | 125 + .../RegisterListenersPass.php | 136 + lib/vendor/symfony/event-dispatcher/Event.php | 58 + .../event-dispatcher/EventDispatcher.php | 236 + .../EventDispatcherInterface.php | 93 + .../EventSubscriberInterface.php | 46 + .../symfony/event-dispatcher/GenericEvent.php | 175 + .../ImmutableEventDispatcher.php | 91 + lib/vendor/symfony/event-dispatcher/LICENSE | 19 + lib/vendor/symfony/event-dispatcher/README.md | 15 + .../Tests/AbstractEventDispatcherTest.php | 442 ++ .../Debug/TraceableEventDispatcherTest.php | 305 ++ .../Tests/Debug/WrappedListenerTest.php | 59 + .../RegisterListenersPassTest.php | 206 + .../Tests/EventDispatcherTest.php | 22 + .../event-dispatcher/Tests/EventTest.php | 55 + .../Tests/GenericEventTest.php | 136 + .../Tests/ImmutableEventDispatcherTest.php | 106 + .../symfony/event-dispatcher/composer.json | 48 + .../symfony/event-dispatcher/phpunit.xml.dist | 31 + lib/vendor/symfony/finder/.gitignore | 3 + lib/vendor/symfony/finder/CHANGELOG.md | 69 + .../symfony/finder/Comparator/Comparator.php | 98 + .../finder/Comparator/DateComparator.php | 51 + .../finder/Comparator/NumberComparator.php | 79 + .../Exception/AccessDeniedException.php | 19 + lib/vendor/symfony/finder/Finder.php | 783 ++++ lib/vendor/symfony/finder/Glob.php | 116 + .../finder/Iterator/CustomFilterIterator.php | 61 + .../Iterator/DateRangeFilterIterator.php | 58 + .../Iterator/DepthRangeFilterIterator.php | 45 + .../ExcludeDirectoryFilterIterator.php | 84 + .../Iterator/FileTypeFilterIterator.php | 53 + .../Iterator/FilecontentFilterIterator.php | 58 + .../Iterator/FilenameFilterIterator.php | 47 + .../Iterator/MultiplePcreFilterIterator.php | 112 + .../finder/Iterator/PathFilterIterator.php | 56 + .../Iterator/RecursiveDirectoryIterator.php | 140 + .../Iterator/SizeRangeFilterIterator.php | 57 + .../finder/Iterator/SortableIterator.php | 99 + lib/vendor/symfony/finder/LICENSE | 19 + lib/vendor/symfony/finder/README.md | 14 + lib/vendor/symfony/finder/SplFileInfo.php | 78 + .../Tests/Comparator/ComparatorTest.php | 65 + .../Tests/Comparator/DateComparatorTest.php | 64 + .../Tests/Comparator/NumberComparatorTest.php | 108 + .../symfony/finder/Tests/FinderTest.php | 1384 ++++++ .../symfony/finder/Tests/Fixtures/.dot/a | 0 .../finder/Tests/Fixtures/.dot/b/c.neon | 0 .../finder/Tests/Fixtures/.dot/b/d.neon | 0 .../finder/Tests/Fixtures/A/B/C/abc.dat | 0 .../symfony/finder/Tests/Fixtures/A/B/ab.dat | 0 .../symfony/finder/Tests/Fixtures/A/a.dat | 0 .../Tests/Fixtures/copy/A/B/C/abc.dat.copy | 0 .../Tests/Fixtures/copy/A/B/ab.dat.copy | 0 .../finder/Tests/Fixtures/copy/A/a.dat.copy | 0 .../symfony/finder/Tests/Fixtures/dolor.txt | 2 + .../symfony/finder/Tests/Fixtures/ipsum.txt | 2 + .../symfony/finder/Tests/Fixtures/lorem.txt | 2 + .../symfony/finder/Tests/Fixtures/one/.dot | 1 + .../symfony/finder/Tests/Fixtures/one/a | 0 .../finder/Tests/Fixtures/one/b/c.neon | 0 .../finder/Tests/Fixtures/one/b/d.neon | 0 .../Fixtures/r+e.gex[c]a(r)s/dir/bar.dat | 0 .../finder/Tests/Fixtures/with space/foo.txt | 0 lib/vendor/symfony/finder/Tests/GlobTest.php | 95 + .../Iterator/CustomFilterIteratorTest.php | 46 + .../Iterator/DateRangeFilterIteratorTest.php | 92 + .../Iterator/DepthRangeFilterIteratorTest.php | 103 + .../ExcludeDirectoryFilterIteratorTest.php | 107 + .../Iterator/FileTypeFilterIteratorTest.php | 82 + .../FilecontentFilterIteratorTest.php | 86 + .../Iterator/FilenameFilterIteratorTest.php | 54 + .../finder/Tests/Iterator/Iterator.php | 55 + .../Tests/Iterator/IteratorTestCase.php | 100 + .../Tests/Iterator/MockFileListIterator.php | 21 + .../finder/Tests/Iterator/MockSplFileInfo.php | 132 + .../MultiplePcreFilterIteratorTest.php | 71 + .../Tests/Iterator/PathFilterIteratorTest.php | 82 + .../Tests/Iterator/RealIteratorTestCase.php | 128 + .../RecursiveDirectoryIteratorTest.php | 59 + .../Iterator/SizeRangeFilterIteratorTest.php | 70 + .../Tests/Iterator/SortableIteratorTest.php | 262 ++ lib/vendor/symfony/finder/composer.json | 33 + lib/vendor/symfony/finder/phpunit.xml.dist | 30 + .../symfony/lib/action/sfAction.class.php | 39 +- .../lib/action/sfActionStack.class.php | 5 +- .../lib/action/sfActionStackEntry.class.php | 2 +- .../symfony/lib/action/sfActions.class.php | 2 +- .../symfony/lib/action/sfComponent.class.php | 77 +- .../symfony/lib/action/sfComponents.class.php | 6 +- lib/vendor/symfony/lib/addon/sfData.class.php | 4 +- .../symfony/lib/addon/sfPager.class.php | 5 +- .../symfony/lib/autoload/sfAutoload.class.php | 25 +- .../lib/autoload/sfAutoloadAgain.class.php | 4 +- .../lib/autoload/sfCoreAutoload.class.php | 53 +- .../lib/autoload/sfSimpleAutoload.class.php | 8 +- .../symfony/lib/cache/sfAPCCache.class.php | 75 +- .../symfony/lib/cache/sfCache.class.php | 20 +- .../lib/cache/sfEAcceleratorCache.class.php | 34 +- .../symfony/lib/cache/sfFileCache.class.php | 60 +- .../lib/cache/sfFunctionCache.class.php | 8 +- .../lib/cache/sfMemcacheCache.class.php | 48 +- .../symfony/lib/cache/sfNoCache.class.php | 12 +- .../symfony/lib/cache/sfSQLiteCache.class.php | 149 +- .../symfony/lib/cache/sfXCacheCache.class.php | 47 +- lib/vendor/symfony/lib/command/cli.php | 22 +- .../command/sfAnsiColorFormatter.class.php | 16 +- .../command/sfCommandApplication.class.php | 98 +- .../lib/command/sfCommandArgument.class.php | 8 +- .../command/sfCommandArgumentSet.class.php | 10 +- .../sfCommandArgumentsException.class.php | 2 +- .../lib/command/sfCommandException.class.php | 2 +- .../lib/command/sfCommandLogger.class.php | 2 +- .../lib/command/sfCommandManager.class.php | 34 +- .../lib/command/sfCommandOption.class.php | 8 +- .../lib/command/sfCommandOptionSet.class.php | 14 +- .../symfony/lib/command/sfFormatter.class.php | 21 +- .../sfSymfonyCommandApplication.class.php | 2 +- .../lib/config/config/config_handlers.yml | 5 + .../lib/config/config/core_compile.yml | 6 + .../symfony/lib/config/config/factories.yml | 10 + .../symfony/lib/config/config/services.yml | 19 + .../symfony/lib/config/config/settings.yml | 1 + .../sfApplicationConfiguration.class.php | 23 +- .../config/sfAutoloadConfigHandler.class.php | 13 +- .../lib/config/sfCacheConfigHandler.class.php | 7 +- .../config/sfCompileConfigHandler.class.php | 40 +- .../symfony/lib/config/sfConfig.class.php | 4 +- .../lib/config/sfConfigCache.class.php | 23 +- .../lib/config/sfConfigHandler.class.php | 12 +- .../config/sfDatabaseConfigHandler.class.php | 9 +- ...sfDefineEnvironmentConfigHandler.class.php | 7 +- .../config/sfFactoryConfigHandler.class.php | 27 +- .../config/sfFilterConfigHandler.class.php | 13 +- .../config/sfGeneratorConfigHandler.class.php | 9 +- .../config/sfPluginConfiguration.class.php | 42 +- .../sfPluginConfigurationGeneric.class.php | 2 +- .../config/sfProjectConfiguration.class.php | 77 +- .../lib/config/sfRootConfigHandler.class.php | 10 +- .../config/sfRoutingConfigHandler.class.php | 11 +- .../config/sfSecurityConfigHandler.class.php | 7 +- .../config/sfServiceConfigHandler.class.php | 69 + .../sfSimpleYamlConfigHandler.class.php | 7 +- .../lib/config/sfViewConfigHandler.class.php | 11 +- .../lib/config/sfYamlConfigHandler.class.php | 14 +- .../default/actions/actions.class.php | 2 +- .../default/templates/disabledSuccess.php | 2 +- .../default/templates/error404Success.php | 2 +- .../default/templates/indexSuccess.php | 2 +- .../default/templates/loginSuccess.php | 2 +- .../default/templates/moduleSuccess.php | 2 +- .../default/templates/secureSuccess.php | 2 +- .../lib/controller/sfController.class.php | 35 +- .../controller/sfFrontWebController.class.php | 3 +- .../lib/controller/sfWebController.class.php | 20 +- .../symfony/lib/database/sfDatabase.class.php | 20 +- .../lib/database/sfDatabaseManager.class.php | 13 +- .../lib/database/sfMySQLDatabase.class.php | 2 +- .../lib/database/sfMySQLiDatabase.class.php | 2 + .../lib/database/sfPDODatabase.class.php | 6 +- .../database/sfPostgreSQLDatabase.class.php | 2 +- .../symfony/lib/debug/sfDebug.class.php | 23 +- .../symfony/lib/debug/sfTimer.class.php | 2 +- .../lib/debug/sfTimerManager.class.php | 14 +- .../symfony/lib/debug/sfWebDebug.class.php | 38 +- .../lib/debug/sfWebDebugPanel.class.php | 20 +- .../lib/debug/sfWebDebugPanelCache.class.php | 2 +- .../lib/debug/sfWebDebugPanelConfig.class.php | 2 +- .../lib/debug/sfWebDebugPanelLogs.class.php | 2 +- .../lib/debug/sfWebDebugPanelMailer.class.php | 3 +- .../lib/debug/sfWebDebugPanelMemory.class.php | 4 +- .../sfWebDebugPanelSymfonyVersion.class.php | 2 +- .../lib/debug/sfWebDebugPanelTimer.class.php | 2 +- .../lib/debug/sfWebDebugPanelView.class.php | 60 +- .../lib/escaper/sfOutputEscaper.class.php | 2 +- .../sfOutputEscaperArrayDecorator.class.php | 3 +- .../sfOutputEscaperGetterDecorator.class.php | 2 +- ...sfOutputEscaperIteratorDecorator.class.php | 6 +- .../sfOutputEscaperObjectDecorator.class.php | 14 +- .../lib/escaper/sfOutputEscaperSafe.class.php | 2 +- .../symfony/lib/event/sfEvent.class.php | 162 + .../lib/event/sfEventDispatcher.class.php | 157 + .../symfony/lib/event_dispatcher/sfEvent.php | 162 - .../event_dispatcher/sfEventDispatcher.php | 159 - .../lib/exception/sfCacheException.class.php | 2 +- .../sfConfigurationException.class.php | 2 +- .../exception/sfControllerException.class.php | 2 +- .../exception/sfDatabaseException.class.php | 2 +- .../exception/sfError404Exception.class.php | 2 +- .../lib/exception/sfException.class.php | 83 +- .../exception/sfFactoryException.class.php | 2 +- .../lib/exception/sfFileException.class.php | 2 +- .../lib/exception/sfFilterException.class.php | 2 +- .../exception/sfForwardException.class.php | 2 +- .../sfInitializationException.class.php | 2 +- .../lib/exception/sfParseException.class.php | 2 +- .../lib/exception/sfRenderException.class.php | 2 +- .../exception/sfSecurityException.class.php | 2 +- .../lib/exception/sfStopException.class.php | 2 +- .../exception/sfStorageException.class.php | 2 +- .../lib/exception/sfViewException.class.php | 2 +- .../filter/sfBasicSecurityFilter.class.php | 2 +- .../lib/filter/sfCacheFilter.class.php | 6 +- .../lib/filter/sfExecutionFilter.class.php | 3 +- .../symfony/lib/filter/sfFilter.class.php | 17 +- .../lib/filter/sfFilterChain.class.php | 2 +- .../lib/filter/sfRenderingFilter.class.php | 2 +- .../lib/form/addon/sfFormFilter.class.php | 2 +- .../lib/form/addon/sfFormObject.class.php | 46 +- .../lib/form/addon/sfFormSymfony.class.php | 7 +- lib/vendor/symfony/lib/form/sfForm.class.php | 271 +- .../symfony/lib/form/sfFormField.class.php | 24 +- .../lib/form/sfFormFieldSchema.class.php | 8 +- .../lib/generator/sfGenerator.class.php | 22 +- .../generator/sfGeneratorManager.class.php | 14 +- .../lib/generator/sfModelGenerator.class.php | 27 +- .../sfModelGeneratorConfiguration.class.php | 17 +- ...ModelGeneratorConfigurationField.class.php | 2 +- .../sfModelGeneratorHelper.class.php | 16 +- lib/vendor/symfony/lib/helper/AssetHelper.php | 31 +- lib/vendor/symfony/lib/helper/CacheHelper.php | 2 +- lib/vendor/symfony/lib/helper/DateHelper.php | 6 +- .../symfony/lib/helper/EscapingHelper.php | 2 +- .../symfony/lib/helper/HelperHelper.php | 2 +- lib/vendor/symfony/lib/helper/I18NHelper.php | 19 +- .../lib/helper/JavascriptBaseHelper.php | 6 +- .../symfony/lib/helper/NumberHelper.php | 4 +- .../symfony/lib/helper/PartialHelper.php | 4 +- lib/vendor/symfony/lib/helper/TagHelper.php | 6 +- lib/vendor/symfony/lib/helper/TextHelper.php | 95 +- lib/vendor/symfony/lib/helper/UrlHelper.php | 52 +- lib/vendor/symfony/lib/i18n/Gettext/MO.php | 92 +- lib/vendor/symfony/lib/i18n/Gettext/PO.php | 34 +- .../lib/i18n/Gettext/TGettext.class.php | 72 +- .../sfI18nApplicationExtract.class.php | 2 +- .../lib/i18n/extract/sfI18nExtract.class.php | 2 +- .../sfI18nExtractorInterface.class.php | 2 +- .../extract/sfI18nModuleExtract.class.php | 6 +- .../i18n/extract/sfI18nPhpExtractor.class.php | 2 +- .../extract/sfI18nYamlExtractor.class.php | 2 +- .../sfI18nYamlGeneratorExtractor.class.php | 6 +- .../sfI18nYamlValidateExtractor.class.php | 4 +- .../symfony/lib/i18n/sfChoiceFormat.class.php | 37 +- .../symfony/lib/i18n/sfCultureInfo.class.php | 33 +- .../symfony/lib/i18n/sfDateFormat.class.php | 48 +- .../lib/i18n/sfDateTimeFormatInfo.class.php | 2 +- lib/vendor/symfony/lib/i18n/sfI18N.class.php | 2 +- .../lib/i18n/sfIMessageSource.class.php | 2 +- .../lib/i18n/sfMessageFormat.class.php | 2 +- .../lib/i18n/sfMessageSource.class.php | 7 +- .../i18n/sfMessageSource_Aggregate.class.php | 7 +- .../i18n/sfMessageSource_Database.class.php | 2 +- .../lib/i18n/sfMessageSource_File.class.php | 4 +- .../lib/i18n/sfMessageSource_MySQL.class.php | 40 +- .../lib/i18n/sfMessageSource_SQLite.class.php | 24 +- .../i18n/sfMessageSource_SQLite3.class.php | 418 ++ .../lib/i18n/sfMessageSource_XLIFF.class.php | 8 +- .../i18n/sfMessageSource_gettext.class.php | 2 +- .../symfony/lib/i18n/sfNumberFormat.class.php | 34 +- .../lib/i18n/sfNumberFormatInfo.class.php | 2 +- .../lib/log/sfAggregateLogger.class.php | 21 +- .../symfony/lib/log/sfConsoleLogger.class.php | 11 +- .../symfony/lib/log/sfEventLogger.class.php | 39 + .../symfony/lib/log/sfFileLogger.class.php | 20 +- lib/vendor/symfony/lib/log/sfLogger.class.php | 43 +- .../lib/log/sfLoggerInterface.class.php | 6 +- .../symfony/lib/log/sfLoggerWrapper.class.php | 7 +- .../symfony/lib/log/sfNoLogger.class.php | 8 +- .../lib/log/sfPsrLoggerAdapter.class.php | 161 + .../symfony/lib/log/sfStreamLogger.class.php | 19 +- .../symfony/lib/log/sfVarLogger.class.php | 14 +- .../lib/log/sfWebDebugLogger.class.php | 23 +- .../symfony/lib/mailer/sfMailer.class.php | 20 +- .../sfMailerMessageLoggerPlugin.class.php | 2 +- .../symfony/lib/mailer/sfNoMailer.class.php | 73 + .../symfony/lib/plugin/sfPearConfig.class.php | 6 +- .../lib/plugin/sfPearDownloader.class.php | 2 +- .../lib/plugin/sfPearEnvironment.class.php | 6 +- .../lib/plugin/sfPearFrontendPlugin.class.php | 6 +- .../symfony/lib/plugin/sfPearRest.class.php | 2 +- .../symfony/lib/plugin/sfPearRest10.class.php | 2 +- .../symfony/lib/plugin/sfPearRest11.class.php | 2 +- .../lib/plugin/sfPearRestPlugin.class.php | 3 +- .../sfPluginDependencyException.class.php | 2 +- .../lib/plugin/sfPluginException.class.php | 2 +- .../lib/plugin/sfPluginManager.class.php | 2 +- ...uginRecursiveDependencyException.class.php | 2 +- .../plugin/sfPluginRestException.class.php | 2 +- .../plugin/sfSymfonyPluginManager.class.php | 2 +- .../sfDoctrinePluginConfiguration.class.php | 34 +- .../template/sfDoctrineFormBaseTemplate.php | 2 +- ...ctrineFormGeneratedInheritanceTemplate.php | 22 +- .../sfDoctrineFormGeneratedTemplate.php | 22 +- .../template/sfDoctrineFormPluginTemplate.php | 2 +- .../template/sfDoctrineFormTemplate.php | 2 +- .../template/sfDoctrinePluginFormTemplate.php | 2 +- .../sfDoctrineFormFilterBaseTemplate.php | 2 +- ...FormFilterGeneratedInheritanceTemplate.php | 2 +- .../sfDoctrineFormFilterGeneratedTemplate.php | 2 +- .../sfDoctrineFormFilterPluginTemplate.php | 2 +- .../template/sfDoctrineFormFilterTemplate.php | 2 +- .../sfDoctrinePluginFormFilterTemplate.php | 2 +- .../admin/parts/batchAction.php | 2 + .../admin/parts/configuration.php | 2 +- .../admin/parts/paginationAction.php | 4 +- .../admin/parts/sortingAction.php | 2 +- .../admin/skeleton/actions/actions.class.php | 2 +- .../admin/skeleton/lib/configuration.php | 2 +- .../admin/skeleton/lib/helper.php | 2 +- .../admin/template/actions/actions.class.php | 4 +- .../admin/template/lib/helper.php | 2 +- .../default/parts/deleteAction.php | 2 +- .../default/parts/editAction.php | 2 +- .../default/parts/indexAction.php | 2 +- .../default/parts/showAction.php | 2 +- .../default/parts/updateAction.php | 2 +- .../skeleton/actions/actions.class.php | 2 +- .../template/actions/actions.class.php | 2 +- .../sfDoctrinePlugin/i18n/sf_admin.de.xml | 39 +- .../sfDoctrinePlugin/i18n/sf_admin.es.xml | 176 +- .../sfDoctrinePlugin/i18n/sf_admin.fa.xml | 16 + .../sfDoctrinePlugin/i18n/sf_admin.fr.xml | 37 + .../sfDoctrinePlugin/i18n/sf_admin.it.xml | 28 + .../sfDoctrinePlugin/i18n/sf_admin.ja.xml | 2 +- .../sfDoctrinePlugin/i18n/sf_admin.nl.xml | 4 + .../sfDoctrinePlugin/i18n/sf_admin.ru.xml | 32 +- .../sfDoctrinePlugin/i18n/sf_admin.sl.xml | 18 +- .../sfDoctrinePlugin/i18n/sf_admin.uk.xml | 54 +- .../sfDoctrinePlugin/i18n/sf_admin.zh_TW.xml | 4 + .../lib/cli/sfDoctrineCli.class.php | 2 +- .../sfDoctrineConnectionListener.class.php | 2 +- .../sfDoctrineConnectionProfiler.class.php | 43 +- .../lib/database/sfDoctrineDatabase.class.php | 25 +- .../debug/sfWebDebugPanelDoctrine.class.php | 2 +- .../lib/form/sfFormDoctrine.class.php | 60 +- .../lib/form/sfFormFilterDoctrine.class.php | 26 +- .../lib/generator/sfDoctrineColumn.class.php | 58 +- .../sfDoctrineFormFilterGenerator.class.php | 2 +- .../sfDoctrineFormGenerator.class.php | 53 +- .../generator/sfDoctrineGenerator.class.php | 2 +- .../lib/mailer/Swift_DoctrineSpool.class.php | 4 +- .../lib/pager/sfDoctrinePager.class.php | 2 +- .../lib/record/sfDoctrineRecord.class.php | 26 +- .../sfDoctrineRecordI18nFilter.class.php | 15 +- .../lib/routing/sfDoctrineRoute.class.php | 2 +- .../sfDoctrineRouteCollection.class.php | 2 +- .../lib/sfDoctrineException.class.php | 2 +- .../lib/task/sfDoctrineBaseTask.class.php | 2 +- .../lib/task/sfDoctrineBuildDbTask.class.php | 2 +- .../task/sfDoctrineBuildFiltersTask.class.php | 2 +- .../task/sfDoctrineBuildFormsTask.class.php | 2 +- .../task/sfDoctrineBuildModelTask.class.php | 58 +- .../task/sfDoctrineBuildSchemaTask.class.php | 2 +- .../lib/task/sfDoctrineBuildSqlTask.class.php | 2 +- .../lib/task/sfDoctrineBuildTask.class.php | 2 +- .../sfDoctrineCleanModelFilesTask.class.php | 2 +- .../lib/task/sfDoctrineCompileTask.class.php | 79 + .../sfDoctrineConfigureDatabaseTask.class.php | 2 +- .../sfDoctrineCreateModelTablesTask.class.php | 16 +- .../lib/task/sfDoctrineDataDumpTask.class.php | 2 +- .../lib/task/sfDoctrineDataLoadTask.class.php | 4 +- .../sfDoctrineDeleteModelFilesTask.class.php | 8 +- .../lib/task/sfDoctrineDqlTask.class.php | 2 +- .../lib/task/sfDoctrineDropDbTask.class.php | 4 +- .../sfDoctrineGenerateAdminTask.class.php | 2 +- .../sfDoctrineGenerateMigrationTask.class.php | 2 +- ...DoctrineGenerateMigrationsDbTask.class.php | 2 +- ...ctrineGenerateMigrationsDiffTask.class.php | 2 +- ...rineGenerateMigrationsModelsTask.class.php | 2 +- ...ctrineGenerateModuleForRouteTask.class.php | 2 +- .../sfDoctrineGenerateModuleTask.class.php | 2 +- .../task/sfDoctrineInsertSqlTask.class.php | 2 +- .../lib/task/sfDoctrineMigrateTask.class.php | 22 +- .../lib/test/sfTesterDoctrine.class.php | 2 +- .../sfValidatorDoctrineChoice.class.php | 4 +- .../sfValidatorDoctrineUnique.class.php | 9 +- .../lib/vendor/doctrine/Doctrine.php | 38 - .../Doctrine/Adapter/Statement/Oracle.php | 597 --- .../lib/vendor/doctrine/Doctrine/Cli.php | 679 --- .../lib/vendor/doctrine/Doctrine/Column.php | 163 - .../doctrine/Doctrine/Connection/Mssql.php | 405 -- .../doctrine/Doctrine/Connection/Oracle.php | 145 - .../doctrine/Doctrine/Connection/Pgsql.php | 246 - .../Doctrine/Connection/UnitOfWork.php | 948 ---- .../vendor/doctrine/Doctrine/Data/Export.php | 212 - .../doctrine/Doctrine/DataDict/Mssql.php | 266 -- .../doctrine/Doctrine/DataDict/Mysql.php | 514 --- .../doctrine/Doctrine/DataDict/Pgsql.php | 655 --- .../lib/vendor/doctrine/Doctrine/Event.php | 375 -- .../lib/vendor/doctrine/Doctrine/Export.php | 1389 ------ .../vendor/doctrine/Doctrine/Export/Mssql.php | 472 -- .../vendor/doctrine/Doctrine/Export/Mysql.php | 784 ---- .../vendor/doctrine/Doctrine/Export/Pgsql.php | 393 -- .../doctrine/Doctrine/Expression/Mssql.php | 104 - .../doctrine/Doctrine/Expression/Pgsql.php | 233 - .../doctrine/Doctrine/Hydrator/Abstract.php | 86 - .../vendor/doctrine/Doctrine/Import/Mssql.php | 248 - .../vendor/doctrine/Doctrine/Import/Mysql.php | 240 - .../vendor/doctrine/Doctrine/Import/Pgsql.php | 289 -- .../lib/vendor/doctrine/Doctrine/Parser.php | 153 - .../Doctrine/Parser/sfYaml/sfYamlInline.php | 442 -- .../Doctrine/Parser/sfYaml/sfYamlParser.php | 610 --- .../doctrine/Doctrine/Query/Abstract.php | 2143 --------- .../doctrine/Doctrine/Query/Tokenizer.php | 555 --- .../doctrine/Doctrine/Record/Abstract.php | 399 -- .../doctrine/Doctrine/Relation/Parser.php | 537 --- .../lib/vendor/doctrine/Doctrine/Table.php | 2813 ------------ .../vendor/doctrine/Doctrine/Validator.php | 201 - .../sfWidgetFormDoctrineArrayChoice.class.php | 85 + .../sfWidgetFormDoctrineChoice.class.php | 2 +- .../test/functional/AdminGenBrowser.class.php | 4 +- .../test/functional/EnvironmentSetupTest.php | 6 +- .../test/functional/PagerTest.php | 2 +- .../test/functional/RouteTest.php | 2 +- .../test/functional/Ticket/5269Test.php | 4 +- .../actions/actions.class.php | 2 +- .../my_articles/actions/actions.class.php | 2 +- ...y_articlesGeneratorConfiguration.class.php | 2 +- .../lib/my_articlesGeneratorHelper.class.php | 2 +- .../articles/actions/actions.class.php | 6 +- .../attachment/actions/actions.class.php | 2 +- .../config/ProjectConfiguration.class.php | 27 +- .../config/doctrine/linked_schema.yml | 1 + .../doctrine/ArticleFormFilter.class.php | 2 +- .../ArticleTranslationFormFilter.class.php | 2 +- .../doctrine/AttachmentFormFilter.class.php | 2 +- .../doctrine/AuthorFormFilter.class.php | 2 +- ...horInheritanceConcreteFormFilter.class.php | 2 +- .../AuthorInheritanceFormFilter.class.php | 2 +- .../doctrine/BaseFormFilterDoctrine.class.php | 2 +- .../doctrine/BlogArticleFormFilter.class.php | 2 +- ...BlogArticleTranslationFormFilter.class.php | 2 +- .../doctrine/BlogAuthorFormFilter.class.php | 2 +- .../doctrine/CamelCaseFormFilter.class.php | 2 +- .../DefaultValueTestFormFilter.class.php | 2 +- .../FormGeneratorTest2FormFilter.class.php | 2 +- .../filter/doctrine/GroupFormFilter.class.php | 2 +- .../doctrine/PermissionFormFilter.class.php | 2 +- .../doctrine/ProfileFormFilter.class.php | 2 +- .../doctrine/ResourceTypeFormFilter.class.php | 2 +- .../SettingFormFilter.class.php | 2 +- .../base/BaseSettingFormFilter.class.php | 53 - .../doctrine/SubscriptionFormFilter.class.php | 2 +- .../doctrine/UniqueTestFormFilter.class.php | 2 +- .../filter/doctrine/UserFormFilter.class.php | 2 +- .../base/BaseArticleFormFilter.class.php | 59 - ...BaseArticleTranslationFormFilter.class.php | 54 - .../base/BaseAttachmentFormFilter.class.php | 44 - .../base/BaseAuthorFormFilter.class.php | 47 - ...horInheritanceConcreteFormFilter.class.php | 34 - .../BaseAuthorInheritanceFormFilter.class.php | 24 - .../base/BaseBlogArticleFormFilter.class.php | 24 - ...BlogArticleTranslationFormFilter.class.php | 54 - .../base/BaseBlogAuthorFormFilter.class.php | 24 - .../base/BaseCamelCaseFormFilter.class.php | 47 - .../BaseDefaultValueTestFormFilter.class.php | 44 - ...BaseFormGeneratorTest2FormFilter.class.php | 44 - .../base/BaseGroupFormFilter.class.php | 86 - .../base/BasePermissionFormFilter.class.php | 86 - .../base/BaseProfileFormFilter.class.php | 50 - .../base/BaseResourceTypeFormFilter.class.php | 44 - .../base/BaseSubscriptionFormFilter.class.php | 47 - .../base/BaseUniqueTestFormFilter.class.php | 53 - .../base/BaseUserFormFilter.class.php | 92 - .../fixtures/lib/form/BaseForm.class.php | 2 +- .../lib/form/doctrine/ArticleForm.class.php | 2 +- .../doctrine/ArticleTranslationForm.class.php | 2 +- .../form/doctrine/AttachmentForm.class.php | 2 +- .../lib/form/doctrine/AuthorForm.class.php | 2 +- .../AuthorInheritanceConcreteForm.class.php | 2 +- .../doctrine/AuthorInheritanceForm.class.php | 2 +- .../form/doctrine/BaseFormDoctrine.class.php | 2 +- .../form/doctrine/BlogArticleForm.class.php | 2 +- .../BlogArticleTranslationForm.class.php | 2 +- .../form/doctrine/BlogAuthorForm.class.php | 2 +- .../lib/form/doctrine/CamelCaseForm.class.php | 2 +- .../doctrine/DefaultValueTestForm.class.php | 2 +- .../doctrine/FormGeneratorTestForm.class.php | 2 +- .../lib/form/doctrine/GroupForm.class.php | 2 +- .../form/doctrine/PermissionForm.class.php | 2 +- .../lib/form/doctrine/ProfileForm.class.php | 2 +- .../form/doctrine/ResourceTypeForm.class.php | 2 +- .../SettingsPlugin/SettingForm.class.php | 2 +- .../base/BaseSettingForm.class.php | 47 - .../form/doctrine/SubscriptionForm.class.php | 2 +- .../form/doctrine/UniqueTestForm.class.php | 2 +- .../lib/form/doctrine/UserForm.class.php | 2 +- .../doctrine/base/BaseArticleForm.class.php | 51 - .../base/BaseArticleTranslationForm.class.php | 56 - .../base/BaseAttachmentForm.class.php | 41 - .../doctrine/base/BaseAuthorForm.class.php | 43 - ...aseAuthorInheritanceConcreteForm.class.php | 30 - .../base/BaseAuthorInheritanceForm.class.php | 27 - .../base/BaseBlogArticleForm.class.php | 27 - .../BaseBlogArticleTranslationForm.class.php | 56 - .../base/BaseBlogAuthorForm.class.php | 27 - .../doctrine/base/BaseCamelCaseForm.class.php | 43 - .../base/BaseDefaultValueTestForm.class.php | 41 - .../base/BaseFormGeneratorTestForm.class.php | 41 - .../doctrine/base/BaseGroupForm.class.php | 145 - .../base/BasePermissionForm.class.php | 145 - .../doctrine/base/BaseProfileForm.class.php | 45 - .../base/BaseResourceTypeForm.class.php | 41 - .../base/BaseSubscriptionForm.class.php | 43 - .../base/BaseUniqueTestForm.class.php | 55 - .../form/doctrine/base/BaseUserForm.class.php | 153 - .../lib/model/doctrine/Attachment.class.php | 2 +- .../lib/model/doctrine/Author.class.php | 2 +- .../doctrine/AuthorInheritance.class.php | 2 +- .../AuthorInheritanceConcrete.class.php | 2 +- .../lib/model/doctrine/AuthorTable.class.php | 19 +- .../lib/model/doctrine/BlogArticle.class.php | 2 +- .../lib/model/doctrine/BlogAuthor.class.php | 2 +- .../lib/model/doctrine/CamelCase.class.php | 2 +- .../model/doctrine/DefaultValueTest.class.php | 2 +- .../doctrine/FormGeneratorTest.class.php | 2 +- .../doctrine/FormGeneratorTest2.class.php | 2 +- .../doctrine/ModelFromLinkedSchema.class.php | 2 +- .../lib/model/doctrine/ResourceType.class.php | 2 +- .../doctrine/SettingsPlugin/Setting.class.php | 2 +- .../SettingsPlugin/base/BaseSetting.class.php | 55 - .../model/doctrine/base/BaseArticle.class.php | 117 - .../doctrine/base/BaseAttachment.class.php | 34 - .../model/doctrine/base/BaseAuthor.class.php | 57 - .../base/BaseAuthorInheritance.class.php | 21 - .../BaseAuthorInheritanceConcrete.class.php | 35 - .../doctrine/base/BaseBlogArticle.class.php | 27 - .../doctrine/base/BaseBlogAuthor.class.php | 27 - .../doctrine/base/BaseCamelCase.class.php | 45 - .../base/BaseDefaultValueTest.class.php | 36 - .../base/BaseFormGeneratorTest.class.php | 39 - .../base/BaseFormGeneratorTest2.class.php | 39 - .../base/BaseFormGeneratorTest3.class.php | 45 - .../model/doctrine/base/BaseGroup.class.php | 48 - .../base/BaseGroupPermission.class.php | 46 - .../base/BaseModelFromLinkedSchema.class.php | 39 - .../BaseModelWithNumberInColumn.class.php | 53 - .../doctrine/base/BasePermission.class.php | 48 - .../model/doctrine/base/BaseProfile.class.php | 52 - .../doctrine/base/BaseResourceType.class.php | 47 - .../doctrine/base/BaseSubscription.class.php | 49 - .../doctrine/base/BaseUniqueTest.class.php | 77 - .../model/doctrine/base/BaseUser.class.php | 70 - .../doctrine/base/BaseUserGroup.class.php | 46 - .../base/BaseUserPermission.class.php | 46 - .../PluginSettingFormFilter.class.php | 2 +- .../form/doctrine/PluginSettingForm.class.php | 2 +- .../model/doctrine/PluginSetting.class.php | 2 +- .../test/functional/sfDoctrineRecordTest.php | 17 +- .../test/unit/form/sfFormDoctrineTest.php | 4 +- .../test/unit/pager/sfDoctrinePagerTest.php | 4 +- .../test/unit/sfDoctrineColumnTest.php | 10 +- .../sfWidgetFormDoctrineArrayChoiceTest.php | 18 + .../widget/sfWidgetFormDoctrineChoiceTest.php | 28 + .../sfDoctrinePlugin/web/css/default.css | 3 +- .../lib/plugins/sfPropelPlugin/LICENSE | 7 - .../lib/plugins/sfPropelPlugin/LICENSE.Agavi | 14 - .../lib/plugins/sfPropelPlugin/LICENSE.Propel | 506 -- .../lib/plugins/sfPropelPlugin/LICENSE.phing | 1042 ----- .../sfPropelPlugin/config/autoload.yml | 6 - .../sfPropelPlugin/config/installer.php | 5 - .../sfPropelPluginConfiguration.class.php | 78 - .../config/skeleton/config/databases.yml | 32 - .../config/skeleton/config/propel.ini | 54 - .../template/sfPropelFormBaseTemplate.php | 15 - .../sfPropelFormGeneratedTemplate.php | 139 - .../default/template/sfPropelFormTemplate.php | 15 - .../sfPropelFormFilterBaseTemplate.php | 15 - .../sfPropelFormFilterGeneratedTemplate.php | 84 - .../template/sfPropelFormFilterTemplate.php | 15 - .../admin/parts/actionsConfiguration.php | 41 - .../admin/parts/batchAction.php | 72 - .../admin/parts/configuration.php | 59 - .../admin/parts/createAction.php | 9 - .../admin/parts/deleteAction.php | 12 - .../sfPropelModule/admin/parts/editAction.php | 5 - .../admin/parts/fieldsConfiguration.php | 86 - .../admin/parts/filterAction.php | 26 - .../admin/parts/filtersAction.php | 9 - .../admin/parts/indexAction.php | 17 - .../sfPropelModule/admin/parts/newAction.php | 5 - .../admin/parts/paginationAction.php | 42 - .../admin/parts/paginationConfiguration.php | 11 - .../admin/parts/processFormAction.php | 29 - .../admin/parts/sortingAction.php | 44 - .../admin/parts/sortingConfiguration.php | 10 - .../admin/parts/updateAction.php | 9 - .../admin/skeleton/actions/actions.class.php | 16 - .../admin/skeleton/config/generator.yml | 13 - .../admin/skeleton/lib/configuration.php | 13 - .../admin/skeleton/lib/helper.php | 13 - .../admin/template/actions/actions.class.php | 58 - .../admin/template/lib/helper.php | 16 - .../admin/template/templates/_assets.php | 6 - .../admin/template/templates/_filters.php | 36 - .../template/templates/_filters_field.php | 20 - .../admin/template/templates/_flashes.php | 7 - .../admin/template/templates/_form.php | 18 - .../template/templates/_form_actions.php | 35 - .../admin/template/templates/_form_field.php | 20 - .../template/templates/_form_fieldset.php | 18 - .../admin/template/templates/_list.php | 54 - .../template/templates/_list_actions.php | 11 - .../templates/_list_batch_actions.php | 15 - .../templates/_list_field_boolean.php | 5 - .../template/templates/_list_td_actions.php | 18 - .../templates/_list_td_batch_actions.php | 3 - .../template/templates/_list_td_stacked.php | 3 - .../template/templates/_list_td_tabular.php | 9 - .../template/templates/_list_th_stacked.php | 1 - .../template/templates/_list_th_tabular.php | 17 - .../admin/template/templates/_pagination.php | 25 - .../admin/template/templates/editSuccess.php | 20 - .../admin/template/templates/indexSuccess.php | 36 - .../admin/template/templates/newSuccess.php | 20 - .../default/parts/createAction.php | 13 - .../default/parts/deleteAction.php | 17 - .../default/parts/editAction.php | 9 - .../default/parts/indexAction.php | 8 - .../default/parts/newAction.php | 4 - .../default/parts/processFormAction.php | 14 - .../default/parts/showAction.php | 9 - .../default/parts/updateAction.php | 14 - .../skeleton/actions/actions.class.php | 13 - .../default/skeleton/config/generator.yml | 7 - .../template/actions/actions.class.php | 30 - .../default/template/templates/_form.php | 53 - .../template/templates/editSuccess.php | 3 - .../template/templates/indexSuccess.php | 34 - .../default/template/templates/newSuccess.php | 3 - .../template/templates/showSuccess.php | 22 - .../sfPropelPlugin/i18n/sf_admin.ar.xml | 134 - .../sfPropelPlugin/i18n/sf_admin.bg.xml | 126 - .../sfPropelPlugin/i18n/sf_admin.ca.xml | 151 - .../sfPropelPlugin/i18n/sf_admin.cs.xml | 178 - .../sfPropelPlugin/i18n/sf_admin.da.xml | 134 - .../sfPropelPlugin/i18n/sf_admin.de.xml | 154 - .../sfPropelPlugin/i18n/sf_admin.el.xml | 158 - .../sfPropelPlugin/i18n/sf_admin.es.xml | 170 - .../sfPropelPlugin/i18n/sf_admin.es_AR.xml | 114 - .../sfPropelPlugin/i18n/sf_admin.eu.xml | 170 - .../sfPropelPlugin/i18n/sf_admin.fa.xml | 152 - .../sfPropelPlugin/i18n/sf_admin.fi.xml | 134 - .../sfPropelPlugin/i18n/sf_admin.fr.xml | 174 - .../sfPropelPlugin/i18n/sf_admin.hr.xml | 134 - .../sfPropelPlugin/i18n/sf_admin.hu.xml | 134 - .../sfPropelPlugin/i18n/sf_admin.id.xml | 134 - .../sfPropelPlugin/i18n/sf_admin.it.xml | 174 - .../sfPropelPlugin/i18n/sf_admin.ja.xml | 294 -- .../sfPropelPlugin/i18n/sf_admin.lt.xml | 134 - .../sfPropelPlugin/i18n/sf_admin.lv.xml | 134 - .../sfPropelPlugin/i18n/sf_admin.nl.xml | 126 - .../sfPropelPlugin/i18n/sf_admin.no.xml | 114 - .../sfPropelPlugin/i18n/sf_admin.pl.xml | 174 - .../sfPropelPlugin/i18n/sf_admin.pt.xml | 135 - .../sfPropelPlugin/i18n/sf_admin.pt_BR.xml | 138 - .../sfPropelPlugin/i18n/sf_admin.ro.xml | 137 - .../sfPropelPlugin/i18n/sf_admin.ru.xml | 146 - .../sfPropelPlugin/i18n/sf_admin.sk.xml | 134 - .../sfPropelPlugin/i18n/sf_admin.sl.xml | 146 - .../sfPropelPlugin/i18n/sf_admin.sv.xml | 146 - .../sfPropelPlugin/i18n/sf_admin.tr.xml | 174 - .../sfPropelPlugin/i18n/sf_admin.uk.xml | 134 - .../sfPropelPlugin/i18n/sf_admin.zh_CN.xml | 135 - .../sfPropelPlugin/i18n/sf_admin.zh_TW.xml | 147 - .../lib/addon/sfMixer.class.php | 194 - .../lib/addon/sfPropel.class.php | 102 - .../lib/addon/sfPropelBehavior.class.php | 108 - .../lib/addon/sfPropelData.class.php | 530 --- .../addon/sfPropelDatabaseSchema.class.php | 1306 ------ .../lib/addon/sfPropelManyToMany.class.php | 145 - .../lib/addon/sfPropelPager.class.php | 189 - .../lib/behavior/SfPropelBehaviorBase.php | 53 - .../lib/behavior/SfPropelBehaviorI18n.php | 389 -- .../SfPropelBehaviorI18nTranslation.php | 91 - .../lib/behavior/SfPropelBehaviorSymfony.php | 138 - .../SfPropelBehaviorSymfonyBehaviors.php | 342 -- .../SfPropelBehaviorTimestampable.php | 63 - .../lib/database/sfPropelDatabase.class.php | 189 - .../lib/debug/sfWebDebugPanelPropel.class.php | 146 - .../lib/form/sfFormFilterPropel.class.php | 268 -- .../lib/form/sfFormPropel.class.php | 311 -- .../sfPropelFormFilterGenerator.class.php | 304 -- .../generator/sfPropelFormGenerator.class.php | 526 --- .../lib/generator/sfPropelGenerator.class.php | 337 -- .../lib/log/sfPropelLogger.class.php | 121 - .../lib/mailer/Swift_PropelSpool.class.php | 138 - .../lib/routing/sfPropelRoute.class.php | 126 - .../routing/sfPropelRouteCollection.class.php | 23 - .../lib/task/phing/phing_default_overrides | 1 - .../lib/task/phing/tasks/defaults.properties | 86 - .../lib/task/phing/types/defaults.properties | 13 - .../sfPropelPlugin/lib/task/sfPhing.class.php | 40 - .../lib/task/sfPhingListener.php | 115 - .../lib/task/sfPropelBaseTask.class.php | 357 -- .../task/sfPropelBuildAllLoadTask.class.php | 95 - .../lib/task/sfPropelBuildAllTask.class.php | 152 - .../task/sfPropelBuildFiltersTask.class.php | 87 - .../lib/task/sfPropelBuildFormsTask.class.php | 95 - .../lib/task/sfPropelBuildModelTask.class.php | 68 - .../task/sfPropelBuildSchemaTask.class.php | 114 - .../lib/task/sfPropelBuildSqlTask.class.php | 59 - .../lib/task/sfPropelBuildTask.class.php | 257 -- .../sfPropelConfigureDatabaseTask.class.php | 118 - .../lib/task/sfPropelDataDumpTask.class.php | 105 - .../lib/task/sfPropelDataLoadTask.class.php | 105 - .../task/sfPropelGenerateAdminTask.class.php | 234 - ...PropelGenerateModuleForRouteTask.class.php | 98 - .../task/sfPropelGenerateModuleTask.class.php | 226 - .../lib/task/sfPropelGraphvizTask.class.php | 55 - .../lib/task/sfPropelInsertSqlTask.class.php | 146 - .../task/sfPropelSchemaToXmlTask.class.php | 46 - .../task/sfPropelSchemaToYmlTask.class.php | 46 - .../lib/test/sfTesterPropel.class.php | 94 - .../sfValidatorPropelChoice.class.php | 131 - .../sfValidatorPropelUnique.class.php | 176 - .../lib/vendor/phing/BuildEvent.php | 198 - .../lib/vendor/phing/BuildException.php | 121 - .../lib/vendor/phing/BuildListener.php | 91 - .../lib/vendor/phing/BuildLogger.php | 70 - .../vendor/phing/ConfigurationException.php | 83 - .../lib/vendor/phing/IntrospectionHelper.php | 542 --- .../sfPropelPlugin/lib/vendor/phing/Phing.php | 1335 ------ .../lib/vendor/phing/Project.php | 968 ---- .../lib/vendor/phing/ProjectComponent.php | 70 - .../lib/vendor/phing/RuntimeConfigurable.php | 118 - .../lib/vendor/phing/Target.php | 317 -- .../sfPropelPlugin/lib/vendor/phing/Task.php | 265 -- .../lib/vendor/phing/TaskAdapter.php | 84 - .../lib/vendor/phing/TaskContainer.php | 42 - .../lib/vendor/phing/UnknownElement.php | 215 - .../vendor/phing/filters/BaseFilterReader.php | 157 - .../phing/filters/BaseParamFilterReader.php | 69 - .../vendor/phing/filters/ChainableReader.php | 42 - .../vendor/phing/filters/ExpandProperties.php | 82 - .../lib/vendor/phing/filters/HeadFilter.php | 161 - .../lib/vendor/phing/filters/LineContains.php | 258 -- .../phing/filters/LineContainsRegexp.php | 179 - .../lib/vendor/phing/filters/PrefixLines.php | 142 - .../vendor/phing/filters/ReplaceRegexp.php | 129 - .../vendor/phing/filters/ReplaceTokens.php | 415 -- .../vendor/phing/filters/StripLineBreaks.php | 148 - .../phing/filters/StripLineComments.php | 205 - .../vendor/phing/filters/StripPhpComments.php | 188 - .../vendor/phing/filters/StripWhitespace.php | 95 - .../lib/vendor/phing/filters/TabToSpaces.php | 144 - .../lib/vendor/phing/filters/TailFilter.php | 157 - .../lib/vendor/phing/filters/TidyFilter.php | 162 - .../vendor/phing/filters/TranslateGettext.php | 285 -- .../vendor/phing/filters/XincludeFilter.php | 137 - .../lib/vendor/phing/filters/XsltFilter.php | 341 -- .../phing/filters/util/ChainReaderHelper.php | 183 - .../phing/filters/util/IniFileTokenReader.php | 97 - .../phing/input/DefaultInputHandler.php | 81 - .../lib/vendor/phing/input/InputHandler.php | 45 - .../lib/vendor/phing/input/InputRequest.php | 107 - .../input/MultipleChoiceInputRequest.php | 58 - .../phing/input/PropertyFileInputHandler.php | 129 - .../vendor/phing/input/YesNoInputRequest.php | 47 - .../lib/vendor/phing/lib/Capsule.php | 266 -- .../lib/vendor/phing/lib/Zip.php | 3590 --------------- .../vendor/phing/listener/AnsiColorLogger.php | 234 - .../vendor/phing/listener/DefaultLogger.php | 278 -- .../vendor/phing/listener/NoBannerLogger.php | 59 - .../vendor/phing/listener/PearLogListener.php | 197 - .../listener/StreamRequiredBuildLogger.php | 39 - .../lib/vendor/phing/listener/XmlLogger.php | 345 -- .../vendor/phing/listener/defaults.properties | 43 - .../vendor/phing/mappers/FileNameMapper.php | 59 - .../vendor/phing/mappers/FlattenMapper.php | 55 - .../lib/vendor/phing/mappers/GlobMapper.php | 113 - .../vendor/phing/mappers/IdentityMapper.php | 54 - .../lib/vendor/phing/mappers/MergeMapper.php | 69 - .../lib/vendor/phing/mappers/RegexpMapper.php | 97 - .../vendor/phing/parser/AbstractHandler.php | 98 - .../vendor/phing/parser/AbstractSAXParser.php | 116 - .../vendor/phing/parser/DataTypeHandler.php | 144 - .../phing/parser/ExpatParseException.php | 31 - .../lib/vendor/phing/parser/ExpatParser.php | 140 - .../lib/vendor/phing/parser/Location.php | 72 - .../phing/parser/NestedElementHandler.php | 186 - .../phing/parser/ProjectConfigurator.php | 245 - .../vendor/phing/parser/ProjectHandler.php | 153 - .../lib/vendor/phing/parser/RootHandler.php | 82 - .../lib/vendor/phing/parser/TargetHandler.php | 149 - .../lib/vendor/phing/parser/TaskHandler.php | 234 - .../vendor/phing/system/io/BufferedReader.php | 168 - .../vendor/phing/system/io/BufferedWriter.php | 71 - .../vendor/phing/system/io/ConsoleReader.php | 84 - .../phing/system/io/FileInputStream.php | 76 - .../phing/system/io/FileOutputStream.php | 71 - .../lib/vendor/phing/system/io/FileReader.php | 41 - .../lib/vendor/phing/system/io/FileSystem.php | 686 --- .../lib/vendor/phing/system/io/FileWriter.php | 42 - .../vendor/phing/system/io/FilterReader.php | 68 - .../vendor/phing/system/io/IOException.php | 27 - .../vendor/phing/system/io/InputStream.php | 178 - .../phing/system/io/InputStreamReader.php | 126 - .../vendor/phing/system/io/OutputStream.php | 108 - .../phing/system/io/OutputStreamWriter.php | 84 - .../lib/vendor/phing/system/io/PhingFile.php | 882 ---- .../lib/vendor/phing/system/io/Reader.php | 91 - .../vendor/phing/system/io/StringReader.php | 84 - .../vendor/phing/system/io/UnixFileSystem.php | 278 -- .../phing/system/io/Win32FileSystem.php | 477 -- .../phing/system/io/WinNTFileSystem.php | 35 - .../lib/vendor/phing/system/io/Writer.php | 53 - .../vendor/phing/system/lang/Character.php | 49 - .../vendor/phing/system/lang/EventObject.php | 52 - .../system/lang/FileNotFoundException.php | 26 - .../system/lang/NullPointerException.php | 26 - .../phing/system/lang/SecurityException.php | 26 - .../lib/vendor/phing/system/util/Message.php | 9 - .../vendor/phing/system/util/Properties.php | 272 -- .../lib/vendor/phing/system/util/Register.php | 115 - .../lib/vendor/phing/system/util/Timer.php | 96 - .../vendor/phing/tasks/defaults.properties | 86 - .../vendor/phing/tasks/ext/CapsuleTask.php | 478 -- .../phing/tasks/ext/ExtractBaseTask.php | 183 - .../vendor/phing/tasks/ext/FtpDeployTask.php | 176 - .../vendor/phing/tasks/ext/JslLintTask.php | 184 - .../lib/vendor/phing/tasks/ext/MailTask.php | 77 - .../vendor/phing/tasks/ext/ManifestTask.php | 341 -- .../phing/tasks/ext/PackageAsPathTask.php | 65 - .../phing/tasks/ext/PearPackage2Task.php | 270 -- .../phing/tasks/ext/PearPackageTask.php | 421 -- .../phing/tasks/ext/PhpCodeSnifferTask.php | 326 -- .../vendor/phing/tasks/ext/PhpLintTask.php | 159 - .../vendor/phing/tasks/ext/ScpSendTask.php | 192 - .../lib/vendor/phing/tasks/ext/SmartyTask.php | 610 --- .../lib/vendor/phing/tasks/ext/TarTask.php | 426 -- .../lib/vendor/phing/tasks/ext/UntarTask.php | 89 - .../lib/vendor/phing/tasks/ext/UnzipTask.php | 68 - .../vendor/phing/tasks/ext/XmlLintTask.php | 135 - .../phing/tasks/ext/ZendCodeAnalyzerTask.php | 182 - .../lib/vendor/phing/tasks/ext/ZipTask.php | 265 -- .../tasks/ext/coverage/CoverageMerger.php | 137 - .../tasks/ext/coverage/CoverageMergerTask.php | 92 - .../tasks/ext/coverage/CoverageReportTask.php | 414 -- .../coverage/CoverageReportTransformer.php | 120 - .../tasks/ext/coverage/CoverageSetupTask.php | 158 - .../tasks/ext/creole/CreoleSQLExecTask.php | 590 --- .../phing/tasks/ext/creole/CreoleTask.php | 242 - .../phing/tasks/ext/dbdeploy/DbDeployTask.php | 192 - .../phing/tasks/ext/dbdeploy/DbmsSyntax.php | 34 - .../tasks/ext/dbdeploy/DbmsSyntaxFactory.php | 59 - .../tasks/ext/dbdeploy/DbmsSyntaxMsSql.php | 37 - .../tasks/ext/dbdeploy/DbmsSyntaxMysql.php | 37 - .../tasks/ext/dbdeploy/DbmsSyntaxSQLite.php | 37 - .../tasks/ext/ioncube/IoncubeComment.php | 43 - .../tasks/ext/ioncube/IoncubeEncoderTask.php | 487 -- .../tasks/ext/ioncube/IoncubeLicenseTask.php | 143 - .../tasks/ext/pdo/PDOResultFormatter.php | 84 - .../ext/pdo/PDOSQLExecFormatterElement.php | 312 -- .../phing/tasks/ext/pdo/PDOSQLExecTask.php | 614 --- .../vendor/phing/tasks/ext/pdo/PDOTask.php | 217 - .../tasks/ext/pdo/PlainPDOResultFormatter.php | 130 - .../tasks/ext/pdo/XMLPDOResultFormatter.php | 141 - .../phing/tasks/ext/pearpackage/Fileset.php | 231 - .../ext/phpdoc/PhingPhpDocumentorSetup.php | 210 - .../ext/phpdoc/PhpDocumentorExternalTask.php | 261 -- .../tasks/ext/phpdoc/PhpDocumentorTask.php | 460 -- .../phing/tasks/ext/phpunit/BatchTest.php | 182 - .../tasks/ext/phpunit/FormatterElement.php | 150 - .../tasks/ext/phpunit/PHPUnitReportTask.php | 186 - .../phing/tasks/ext/phpunit/PHPUnitTask.php | 390 -- .../tasks/ext/phpunit/PHPUnitTestRunner.php | 140 - .../phing/tasks/ext/phpunit/PHPUnitUtil.php | 131 - .../phpunit2/PHPUnit2ResultFormatter.php | 157 - .../phpunit2/PlainPHPUnit2ResultFormatter.php | 116 - .../SummaryPHPUnit2ResultFormatter.php | 57 - .../phpunit2/XMLPHPUnit2ResultFormatter.php | 116 - .../phpunit3/PHPUnit3ResultFormatter.php | 200 - .../phpunit3/PlainPHPUnit3ResultFormatter.php | 123 - .../SummaryPHPUnit3ResultFormatter.php | 58 - .../phpunit3/XMLPHPUnit3ResultFormatter.php | 116 - .../SimpleTestCountResultFormatter.php | 51 - .../simpletest/SimpleTestFormatterElement.php | 61 - .../SimpleTestPlainResultFormatter.php | 94 - .../simpletest/SimpleTestResultFormatter.php | 161 - .../SimpleTestSummaryResultFormatter.php | 53 - .../tasks/ext/simpletest/SimpleTestTask.php | 237 - .../phing/tasks/ext/svn/SvnBaseTask.php | 321 -- .../phing/tasks/ext/svn/SvnCheckoutTask.php | 49 - .../phing/tasks/ext/svn/SvnExportTask.php | 70 - .../tasks/ext/svn/SvnLastRevisionTask.php | 74 - .../phing/tasks/ext/svn/SvnUpdateTask.php | 49 - .../vendor/phing/tasks/system/AdhocTask.php | 88 - .../phing/tasks/system/AdhocTaskdefTask.php | 90 - .../phing/tasks/system/AdhocTypedefTask.php | 71 - .../vendor/phing/tasks/system/AppendTask.php | 240 - .../phing/tasks/system/AvailableTask.php | 135 - .../vendor/phing/tasks/system/ChmodTask.php | 203 - .../vendor/phing/tasks/system/ChownTask.php | 195 - .../phing/tasks/system/ConditionTask.php | 74 - .../vendor/phing/tasks/system/CopyTask.php | 408 -- .../vendor/phing/tasks/system/CvsPassTask.php | 173 - .../lib/vendor/phing/tasks/system/CvsTask.php | 540 --- .../vendor/phing/tasks/system/DeleteTask.php | 277 -- .../vendor/phing/tasks/system/EchoTask.php | 107 - .../vendor/phing/tasks/system/ExecTask.php | 266 -- .../vendor/phing/tasks/system/ExitTask.php | 118 - .../vendor/phing/tasks/system/ForeachTask.php | 138 - .../lib/vendor/phing/tasks/system/IfTask.php | 224 - .../phing/tasks/system/IncludePathTask.php | 115 - .../vendor/phing/tasks/system/InputTask.php | 146 - .../phing/tasks/system/MatchingTask.php | 361 -- .../vendor/phing/tasks/system/MkdirTask.php | 64 - .../vendor/phing/tasks/system/MoveTask.php | 247 - .../phing/tasks/system/PhingCallTask.php | 161 - .../vendor/phing/tasks/system/PhingTask.php | 623 --- .../vendor/phing/tasks/system/PhpEvalTask.php | 169 - .../phing/tasks/system/PropertyPromptTask.php | 234 - .../phing/tasks/system/PropertyTask.php | 438 -- .../phing/tasks/system/ReflexiveTask.php | 155 - .../phing/tasks/system/ResolvePathTask.php | 122 - .../phing/tasks/system/SequentialTask.php | 57 - .../vendor/phing/tasks/system/TaskdefTask.php | 127 - .../vendor/phing/tasks/system/TouchTask.php | 170 - .../vendor/phing/tasks/system/TstampTask.php | 168 - .../vendor/phing/tasks/system/TypedefTask.php | 125 - .../phing/tasks/system/UpToDateTask.php | 217 - .../vendor/phing/tasks/system/WarnTask.php | 35 - .../vendor/phing/tasks/system/XsltTask.php | 81 - .../tasks/system/condition/AndCondition.php | 46 - .../tasks/system/condition/Condition.php | 38 - .../tasks/system/condition/ConditionBase.php | 195 - .../system/condition/ContainsCondition.php | 76 - .../system/condition/EqualsCondition.php | 78 - .../system/condition/IsFalseCondition.php | 60 - .../tasks/system/condition/IsSetCondition.php | 53 - .../system/condition/IsTrueCondition.php | 59 - .../tasks/system/condition/NotCondition.php | 48 - .../tasks/system/condition/OrCondition.php | 46 - .../tasks/system/condition/OsCondition.php | 63 - .../condition/ReferenceExistsCondition.php | 52 - .../vendor/phing/types/AbstractFileSet.php | 570 --- .../lib/vendor/phing/types/Commandline.php | 467 -- .../lib/vendor/phing/types/DataType.php | 182 - .../lib/vendor/phing/types/Description.php | 53 - .../lib/vendor/phing/types/DirSet.php | 49 - .../lib/vendor/phing/types/FileList.php | 224 - .../lib/vendor/phing/types/FileSet.php | 56 - .../lib/vendor/phing/types/FilterChain.php | 176 - .../lib/vendor/phing/types/Mapper.php | 207 - .../lib/vendor/phing/types/Parameter.php | 99 - .../vendor/phing/types/Parameterizable.php | 32 - .../lib/vendor/phing/types/Path.php | 450 -- .../lib/vendor/phing/types/PatternSet.php | 491 -- .../vendor/phing/types/PhingFilterReader.php | 136 - .../lib/vendor/phing/types/Reference.php | 56 - .../vendor/phing/types/RegularExpression.php | 105 - .../lib/vendor/phing/types/TokenReader.php | 66 - .../lib/vendor/phing/types/TokenSource.php | 157 - .../vendor/phing/types/defaults.properties | 13 - .../phing/types/selectors/AndSelector.php | 67 - .../types/selectors/BaseExtendSelector.php | 62 - .../phing/types/selectors/BaseSelector.php | 84 - .../types/selectors/BaseSelectorContainer.php | 270 -- .../selectors/ContainsRegexpSelector.php | 164 - .../types/selectors/ContainsSelector.php | 151 - .../phing/types/selectors/DateSelector.php | 214 - .../phing/types/selectors/DependSelector.php | 151 - .../phing/types/selectors/DepthSelector.php | 158 - .../types/selectors/ExtendFileSelector.php | 43 - .../phing/types/selectors/ExtendSelector.php | 124 - .../phing/types/selectors/FileSelector.php | 47 - .../types/selectors/FilenameSelector.php | 157 - .../types/selectors/MajoritySelector.php | 92 - .../phing/types/selectors/NoneSelector.php | 71 - .../phing/types/selectors/NotSelector.php | 59 - .../phing/types/selectors/OrSelector.php | 72 - .../phing/types/selectors/PresentSelector.php | 154 - .../phing/types/selectors/SelectSelector.php | 124 - .../types/selectors/SelectorContainer.php | 141 - .../phing/types/selectors/SelectorScanner.php | 55 - .../phing/types/selectors/SelectorUtils.php | 440 -- .../phing/types/selectors/SizeSelector.php | 228 - .../phing/types/selectors/TypeSelector.php | 113 - .../vendor/phing/util/DirectoryScanner.php | 712 --- .../vendor/phing/util/ExtendedFileStream.php | 132 - .../lib/vendor/phing/util/FileUtils.php | 294 -- .../lib/vendor/phing/util/LogWriter.php | 95 - .../lib/vendor/phing/util/PathTokenizer.php | 245 - .../vendor/phing/util/SourceFileScanner.php | 159 - .../lib/vendor/phing/util/StringHelper.php | 208 - .../vendor/phing/util/regexp/PregEngine.php | 104 - .../lib/vendor/phing/util/regexp/Regexp.php | 167 - .../vendor/phing/util/regexp/RegexpEngine.php | 73 - .../vendor/propel-generator/bin/propel-gen | 67 - .../propel-generator/bin/propel-gen.bat | 47 - .../vendor/propel-generator/build-propel.xml | 542 --- .../propel-generator/build.properties-sample | 194 - .../lib/vendor/propel-generator/build.xml | 188 - .../vendor/propel-generator/build.xml-local | 124 - .../classes/propel/engine/EngineException.php | 33 - .../classes/propel/engine/GeneratorConfig.php | 229 - .../AlternativeCodingStandardsBehavior.php | 135 - .../engine/behavior/AutoAddPkBehavior.php | 66 - .../engine/behavior/SoftDeleteBehavior.php | 259 -- .../engine/behavior/TimestampableBehavior.php | 88 - .../engine/builder/DataModelBuilder.php | 496 -- .../propel/engine/builder/om/ClassTools.php | 131 - .../propel/engine/builder/om/OMBuilder.php | 368 -- .../engine/builder/om/ObjectBuilder.php | 187 - .../propel/engine/builder/om/PeerBuilder.php | 299 -- .../om/php5/PHP5ExtensionNodeBuilder.php | 122 - .../om/php5/PHP5ExtensionNodePeerBuilder.php | 123 - .../om/php5/PHP5ExtensionObjectBuilder.php | 169 - .../om/php5/PHP5ExtensionPeerBuilder.php | 146 - .../builder/om/php5/PHP5InterfaceBuilder.php | 119 - .../om/php5/PHP5MultiExtendObjectBuilder.php | 202 - .../builder/om/php5/PHP5NestedSetBuilder.php | 1145 ----- .../om/php5/PHP5NestedSetPeerBuilder.php | 1737 ------- .../builder/om/php5/PHP5NodeBuilder.php | 1115 ----- .../builder/om/php5/PHP5NodePeerBuilder.php | 765 ---- .../builder/om/php5/PHP5ObjectBuilder.php | 4071 ----------------- .../builder/om/php5/PHP5PeerBuilder.php | 2645 ----------- .../builder/om/php5/PHP5TableMapBuilder.php | 340 -- .../propel/engine/builder/sql/DDLBuilder.php | 177 - .../engine/builder/sql/DataSQLBuilder.php | 264 -- .../builder/sql/mssql/MssqlDDLBuilder.php | 185 - .../builder/sql/mssql/MssqlDataSQLBuilder.php | 48 - .../builder/sql/mysql/MysqlDDLBuilder.php | 425 -- .../builder/sql/mysql/MysqlDataSQLBuilder.php | 33 - .../builder/sql/oracle/OracleDDLBuilder.php | 176 - .../sql/oracle/OracleDataSQLBuilder.php | 34 - .../builder/sql/pgsql/PgsqlDDLBuilder.php | 316 -- .../builder/sql/pgsql/PgsqlDataSQLBuilder.php | 113 - .../builder/sql/sqlite/SqliteDDLBuilder.php | 130 - .../sql/sqlite/SqliteDataSQLBuilder.php | 47 - .../builder/util/DefaultEnglishPluralizer.php | 43 - .../propel/engine/builder/util/Pluralizer.php | 38 - .../builder/util/transform/XmlToDataSQL.php | 276 -- .../propel/engine/database/model/AppData.php | 216 - .../propel/engine/database/model/Behavior.php | 184 - .../propel/engine/database/model/Column.php | 1184 ----- .../database/model/ColumnDefaultValue.php | 101 - .../model/ConstraintNameGenerator.php | 84 - .../propel/engine/database/model/Database.php | 588 --- .../propel/engine/database/model/Domain.php | 396 -- .../engine/database/model/ForeignKey.php | 442 -- .../propel/engine/database/model/IDMethod.php | 46 - .../database/model/IdMethodParameter.php | 119 - .../propel/engine/database/model/Index.php | 286 -- .../engine/database/model/Inheritance.php | 158 - .../engine/database/model/NameFactory.php | 88 - .../engine/database/model/NameGenerator.php | 83 - .../database/model/PhpNameGenerator.php | 175 - .../engine/database/model/PropelTypes.php | 331 -- .../propel/engine/database/model/Rule.php | 204 - .../propel/engine/database/model/Table.php | 1429 ------ .../propel/engine/database/model/Unique.php | 68 - .../engine/database/model/Validator.php | 194 - .../engine/database/model/VendorInfo.php | 182 - .../engine/database/model/XMLElement.php | 192 - .../database/reverse/BaseSchemaParser.php | 198 - .../engine/database/reverse/SchemaParser.php | 71 - .../reverse/mssql/MssqlSchemaParser.php | 248 - .../reverse/mysql/MysqlSchemaParser.php | 337 -- .../reverse/oracle/OracleSchemaParser.php | 230 - .../reverse/pgsql/PgsqlSchemaParser.php | 545 --- .../reverse/sqlite/SqliteSchemaParser.php | 203 - .../database/transform/XmlToAppData.php | 409 -- .../engine/platform/DefaultPlatform.php | 309 -- .../propel/engine/platform/MssqlPlatform.php | 117 - .../propel/engine/platform/MysqlPlatform.php | 120 - .../propel/engine/platform/OraclePlatform.php | 99 - .../propel/engine/platform/PgsqlPlatform.php | 128 - .../propel/engine/platform/Platform.php | 192 - .../propel/engine/platform/SqlitePlatform.php | 97 - .../phing/AbstractPropelDataModelTask.php | 611 --- .../propel/phing/PropelConvertConfTask.php | 312 -- .../phing/PropelCreoleTransformTask.php | 829 ---- .../propel/phing/PropelDataDTDTask.php | 80 - .../propel/phing/PropelDataDumpTask.php | 365 -- .../phing/PropelDataModelTemplateTask.php | 228 - .../propel/phing/PropelDataSQLTask.php | 204 - .../propel/phing/PropelGraphvizTask.php | 181 - .../classes/propel/phing/PropelOMTask.php | 212 - .../classes/propel/phing/PropelSQLExec.php | 711 --- .../classes/propel/phing/PropelSQLTask.php | 261 -- .../propel/phing/PropelSchemaReverseTask.php | 556 --- .../propel-generator/default.properties | 264 -- .../pear/BuildPropelGenPEARPackageTask.php | 270 -- .../pear/build-pear-package.xml | 143 - .../propel-generator/pear/build.properties | 5 - .../propel-generator/pear/pear-build.xml | 125 - .../propel-generator/pear/pear-propel-gen | 18 - .../propel-generator/pear/pear-propel-gen.bat | 24 - .../resources/dtd/database.dtd | 176 - .../resources/xsd/custom_datatypes.xsd | 8 - .../resources/xsd/database.xsd | 397 -- .../resources/xsl/database.xsl | 292 -- .../lib/vendor/propel/Propel.php | 841 ---- .../lib/vendor/propel/PropelException.php | 61 - .../lib/vendor/propel/adapter/DBAdapter.php | 306 -- .../lib/vendor/propel/adapter/DBMSSQL.php | 194 - .../lib/vendor/propel/adapter/DBMySQL.php | 156 - .../lib/vendor/propel/adapter/DBNone.php | 115 - .../lib/vendor/propel/adapter/DBOracle.php | 143 - .../lib/vendor/propel/adapter/DBPostgres.php | 152 - .../lib/vendor/propel/adapter/DBSQLite.php | 127 - .../adapter/MSSQL/MssqlDateTime.class.php | 27 - .../propel/adapter/MSSQL/MssqlDebugPDO.php | 110 - .../propel/adapter/MSSQL/MssqlPropelPDO.php | 110 - .../lib/vendor/propel/logger/BasicLogger.php | 103 - .../vendor/propel/logger/MojaviLogAdapter.php | 170 - .../lib/vendor/propel/map/ColumnMap.php | 475 -- .../lib/vendor/propel/map/DatabaseMap.php | 200 - .../lib/vendor/propel/map/RelationMap.php | 218 - .../lib/vendor/propel/map/TableMap.php | 654 --- .../lib/vendor/propel/map/ValidatorMap.php | 103 - .../lib/vendor/propel/om/BaseObject.php | 266 -- .../propel/om/NestedSetRecursiveIterator.php | 88 - .../lib/vendor/propel/om/NodeObject.php | 334 -- .../lib/vendor/propel/om/Persistent.php | 118 - .../vendor/propel/om/PreOrderNodeIterator.php | 90 - .../lib/vendor/propel/util/BasePeer.php | 1064 ----- .../lib/vendor/propel/util/Criteria.php | 1754 ------- .../lib/vendor/propel/util/DebugPDO.php | 550 --- .../vendor/propel/util/DebugPDOStatement.php | 134 - .../lib/vendor/propel/util/Join.php | 251 - .../lib/vendor/propel/util/NodePeer.php | 379 -- .../vendor/propel/util/PropelColumnTypes.php | 95 - .../propel/util/PropelConfiguration.php | 170 - .../util/PropelConfigurationIterator.php | 114 - .../lib/vendor/propel/util/PropelDateTime.php | 87 - .../lib/vendor/propel/util/PropelPDO.php | 268 -- .../lib/vendor/propel/util/PropelPager.php | 607 --- .../propel/validator/BasicValidator.php | 46 - .../propel/validator/MatchValidator.php | 79 - .../propel/validator/MaxLengthValidator.php | 50 - .../propel/validator/MaxValueValidator.php | 54 - .../propel/validator/MinLengthValidator.php | 47 - .../propel/validator/MinValueValidator.php | 54 - .../propel/validator/NotMatchValidator.php | 77 - .../propel/validator/RequiredValidator.php | 49 - .../vendor/propel/validator/TypeValidator.php | 44 - .../propel/validator/UniqueValidator.php | 59 - .../propel/validator/ValidValuesValidator.php | 44 - .../propel/validator/ValidationFailed.php | 126 - .../widget/sfWidgetFormPropelChoice.class.php | 108 - .../plugins/sfPropelPlugin/test/bin/prove.php | 31 - .../test/bootstrap/functional.php | 55 - .../sfPropelPlugin/test/bootstrap/unit.php | 20 - .../test/functional/crud/crud10Test.php | 21 - .../test/functional/crud/crud2Test.php | 21 - .../test/functional/crud/crud3Test.php | 21 - .../test/functional/crud/crud6Test.php | 21 - .../test/functional/crud/crud7Test.php | 21 - .../test/functional/crud/crud9Test.php | 21 - .../functional/crud/crudBrowser.class.php | 359 -- .../test/functional/crud/rest1Test.php | 21 - .../test/functional/crud/rest2Test.php | 21 - .../functional/crud/restBrowser.class.php | 36 - .../backend_compatConfiguration.class.php | 8 - .../apps/backend_compat/config/settings.yml | 20 - .../modules/article/actions/actions.class.php | 17 - .../modules/article/config/generator.yml | 5 - .../modules/article/templates/_body.php | 9 - .../modules/error/actions/actions.class.php | 13 - .../modules/error/config/generator.yml | 5 - .../inheritance/actions/actions.class.php | 28 - .../modules/inheritance/config/generator.yml | 5 - .../validation/actions/actions.class.php | 13 - .../modules/validation/config/generator.yml | 5 - .../modules/validation/validate/edit.yml | 13 - .../crud/config/crudConfiguration.class.php | 8 - .../fixtures/apps/crud/config/filters.yml | 9 - .../fixtures/apps/crud/config/routing.yml | 27 - .../fixtures/apps/crud/config/settings.yml | 24 - .../modules/error/actions/actions.class.php | 13 - .../crud/modules/error/config/generator.yml | 5 - .../fixtures/apps/frontend/config/app.yml | 2 - .../fixtures/apps/frontend/config/cache.yml | 4 - .../fixtures/apps/frontend/config/filters.yml | 8 - .../config/frontendConfiguration.class.php | 8 - .../fixtures/apps/frontend/config/routing.yml | 15 - .../apps/frontend/config/settings.yml | 29 - .../fixtures/apps/frontend/config/view.yml | 17 - .../attachment/actions/actions.class.php | 51 - .../attachment/templates/indexSuccess.php | 10 - .../modules/choice/actions/actions.class.php | 50 - .../choice/templates/articleSuccess.php | 10 - .../modules/i18n/actions/actions.class.php | 48 - .../modules/i18n/templates/indexSuccess.php | 8 - .../modules/i18n/templates/movieSuccess.php | 10 - .../i18n/templates/productsSuccess.php | 5 - .../modules/pager/actions/actions.class.php | 10 - .../pager/templates/interfacesSuccess.php | 7 - .../modules/pooling/actions/actions.class.php | 35 - .../modules/unique/actions/actions.class.php | 74 - .../unique/templates/articleSuccess.php | 10 - .../unique/templates/categorySuccess.php | 10 - .../modules/unique/templates/editSuccess.php | 10 - .../apps/frontend/templates/layout.php | 21 - .../config/ProjectConfiguration.class.php | 85 - .../functional/fixtures/config/databases.yml | 11 - .../functional/fixtures/config/propel.ini | 55 - .../functional/fixtures/config/properties.ini | 2 - .../fixtures/config/rsync_exclude.txt | 5 - .../functional/fixtures/config/schema.xml | 105 - .../functional/fixtures/data/database.sqlite | Bin 20480 -> 0 bytes .../fixtures/data/fixtures/fixtures.yml | 62 - .../fixtures/data/sql/lib.model.schema.sql | 170 - .../functional/fixtures/data/sql/sqldb.map | 2 - .../lib/filter/ArticleFormFilter.class.php | 16 - .../lib/filter/AttachmentFormFilter.class.php | 16 - .../lib/filter/AuthorFormFilter.class.php | 16 - .../lib/filter/BaseFormFilterPropel.class.php | 16 - .../lib/filter/BookFormFilter.class.php | 16 - .../lib/filter/CategoryFormFilter.class.php | 16 - .../lib/filter/MovieFormFilter.class.php | 16 - .../lib/filter/MovieI18nFormFilter.class.php | 16 - .../lib/filter/ProductFormFilter.class.php | 16 - .../filter/ProductI18nFormFilter.class.php | 16 - .../fixtures/lib/form/ArticleForm.class.php | 30 - .../lib/form/AttachmentForm.class.php | 20 - .../fixtures/lib/form/AuthorForm.class.php | 15 - .../fixtures/lib/form/BaseForm.class.php | 13 - .../lib/form/BaseFormPropel.class.php | 14 - .../fixtures/lib/form/BookForm.class.php | 15 - .../fixtures/lib/form/CategoryForm.class.php | 15 - .../fixtures/lib/form/MovieForm.class.php | 16 - .../fixtures/lib/form/MovieI18nForm.class.php | 15 - .../fixtures/lib/form/ProductForm.class.php | 15 - .../lib/form/ProductI18nForm.class.php | 15 - .../lib/form/base/BaseArticleForm.class.php | 118 - .../form/base/BaseAttachmentForm.class.php | 43 - .../lib/form/base/BaseAuthorForm.class.php | 100 - .../lib/form/base/BaseBookForm.class.php | 39 - .../lib/form/base/BaseCategoryForm.class.php | 43 - .../lib/form/base/BaseMovieForm.class.php | 48 - .../lib/form/base/BaseMovieI18nForm.class.php | 45 - .../lib/form/base/BaseProductForm.class.php | 50 - .../form/base/BaseProductI18nForm.class.php | 41 - .../functional/fixtures/lib/model/Article.php | 23 - .../fixtures/lib/model/ArticlePeer.php | 12 - .../fixtures/lib/model/Attachment.php | 16 - .../fixtures/lib/model/AttachmentPeer.php | 12 - .../functional/fixtures/lib/model/Author.php | 28 - .../fixtures/lib/model/AuthorArticle.php | 23 - .../fixtures/lib/model/AuthorArticlePeer.php | 12 - .../fixtures/lib/model/AuthorPeer.php | 12 - .../functional/fixtures/lib/model/Book.php | 27 - .../fixtures/lib/model/BookPeer.php | 12 - .../fixtures/lib/model/Category.php | 27 - .../fixtures/lib/model/CategoryPeer.php | 19 - .../functional/fixtures/lib/model/Movie.php | 12 - .../fixtures/lib/model/MovieI18n.php | 12 - .../fixtures/lib/model/MovieI18nPeer.php | 12 - .../fixtures/lib/model/MoviePeer.php | 12 - .../functional/fixtures/lib/model/Product.php | 24 - .../fixtures/lib/model/ProductI18n.php | 24 - .../fixtures/lib/model/ProductI18nPeer.php | 13 - .../fixtures/lib/model/ProductPeer.php | 13 - .../lib/model/map/ArticleTableMap.php | 81 - .../lib/model/map/AttachmentTableMap.php | 72 - .../lib/model/map/AuthorArticleTableMap.php | 71 - .../fixtures/lib/model/map/AuthorTableMap.php | 70 - .../fixtures/lib/model/map/BookTableMap.php | 70 - .../lib/model/map/CategoryTableMap.php | 70 - .../lib/model/map/MovieI18nTableMap.php | 72 - .../fixtures/lib/model/map/MovieTableMap.php | 71 - .../lib/model/map/ProductI18nTableMap.php | 72 - .../lib/model/map/ProductTableMap.php | 72 - .../fixtures/lib/model/om/BaseArticle.php | 1783 -------- .../fixtures/lib/model/om/BaseArticlePeer.php | 1483 ------ .../fixtures/lib/model/om/BaseAttachment.php | 910 ---- .../lib/model/om/BaseAttachmentPeer.php | 1040 ----- .../fixtures/lib/model/om/BaseAuthor.php | 977 ---- .../lib/model/om/BaseAuthorArticle.php | 897 ---- .../lib/model/om/BaseAuthorArticlePeer.php | 1434 ------ .../fixtures/lib/model/om/BaseAuthorPeer.php | 774 ---- .../fixtures/lib/model/om/BaseBook.php | 977 ---- .../fixtures/lib/model/om/BaseBookPeer.php | 774 ---- .../fixtures/lib/model/om/BaseCategory.php | 977 ---- .../lib/model/om/BaseCategoryPeer.php | 774 ---- .../fixtures/lib/model/om/BaseMovie.php | 1032 ----- .../fixtures/lib/model/om/BaseMovieI18n.php | 879 ---- .../lib/model/om/BaseMovieI18nPeer.php | 1015 ---- .../fixtures/lib/model/om/BaseMoviePeer.php | 898 ---- .../fixtures/lib/model/om/BaseProduct.php | 1082 ----- .../fixtures/lib/model/om/BaseProductI18n.php | 879 ---- .../lib/model/om/BaseProductI18nPeer.php | 1015 ---- .../fixtures/lib/model/om/BaseProductPeer.php | 862 ---- .../test/functional/fixtures/symfony | 15 - .../test/functional/formTest.php | 280 -- .../test/functional/i18nTest.php | 159 - .../test/functional/pagerTest.php | 39 - .../test/functional/poolingTest.php | 30 - .../unit/database/sfPropelDatabaseTest.php | 59 - .../unit/debug/sfWebDebugPanelPropelTest.php | 57 - .../test/unit/fixtures/new_schema.yml | 113 - .../test/unit/fixtures/schema.xml | 119 - .../test/unit/fixtures/schema.yml | 95 - .../test/unit/form/sfFormPropelTest.php | 37 - .../sfPropelPlugin/test/unit/sfMixerTest.php | 170 - .../test/unit/sfPropelDatabaseSchemaTest.php | 88 - .../test/unit/task/sfPhingTest.php | 18 - .../validator/sfValidatorPropelUniqueTest.php | 58 - .../sfPropelPlugin/web/css/default.css | 270 -- .../plugins/sfPropelPlugin/web/css/global.css | 34 - .../plugins/sfPropelPlugin/web/images/asc.png | Bin 287 -> 0 bytes .../sfPropelPlugin/web/images/default.png | Bin 267 -> 0 bytes .../sfPropelPlugin/web/images/delete.png | Bin 325 -> 0 bytes .../sfPropelPlugin/web/images/desc.png | Bin 285 -> 0 bytes .../sfPropelPlugin/web/images/edit.png | Bin 411 -> 0 bytes .../sfPropelPlugin/web/images/error.png | Bin 438 -> 0 bytes .../sfPropelPlugin/web/images/first.png | Bin 435 -> 0 bytes .../sfPropelPlugin/web/images/last.png | Bin 436 -> 0 bytes .../sfPropelPlugin/web/images/list.png | Bin 267 -> 0 bytes .../plugins/sfPropelPlugin/web/images/new.png | Bin 288 -> 0 bytes .../sfPropelPlugin/web/images/next.png | Bin 448 -> 0 bytes .../sfPropelPlugin/web/images/previous.png | Bin 452 -> 0 bytes .../sfPropelPlugin/web/images/tick.png | Bin 344 -> 0 bytes .../symfony/lib/request/sfRequest.class.php | 57 +- .../lib/request/sfWebRequest.class.php | 238 +- .../symfony/lib/response/sfResponse.class.php | 19 +- .../lib/response/sfWebResponse.class.php | 71 +- .../lib/routing/sfObjectRoute.class.php | 13 +- .../routing/sfObjectRouteCollection.class.php | 16 +- .../lib/routing/sfPatternRouting.class.php | 140 +- .../lib/routing/sfRequestRoute.class.php | 4 +- .../symfony/lib/routing/sfRoute.class.php | 34 +- .../lib/routing/sfRouteCollection.class.php | 2 +- .../symfony/lib/routing/sfRouting.class.php | 31 +- .../lib/service/sfServiceContainer.class.php | 223 + .../sfServiceContainerBuilder.class.php | 340 ++ .../sfServiceContainerDumper.class.php | 44 + ...sfServiceContainerDumperGraphviz.class.php | 230 + ...fServiceContainerDumperInterface.class.php | 22 + .../sfServiceContainerDumperPhp.class.php | 386 ++ .../sfServiceContainerInterface.class.php | 103 + .../sfServiceContainerLoader.class.php | 112 + .../sfServiceContainerLoaderArray.class.php | 133 + ...fServiceContainerLoaderInterface.class.php | 22 + .../lib/service/sfServiceDefinition.class.php | 242 + .../lib/service/sfServiceParameter.class.php | 43 + .../lib/service/sfServiceReference.class.php | 43 + .../storage/sfCacheSessionStorage.class.php | 75 +- .../sfDatabaseSessionStorage.class.php | 34 +- .../storage/sfMySQLSessionStorage.class.php | 2 +- .../storage/sfMySQLiSessionStorage.class.php | 2 +- .../symfony/lib/storage/sfNoStorage.class.php | 2 +- .../lib/storage/sfPDOSessionStorage.class.php | 4 +- .../sfPostgreSQLSessionStorage.class.php | 2 +- .../lib/storage/sfSessionStorage.class.php | 12 +- .../storage/sfSessionTestStorage.class.php | 13 +- .../symfony/lib/storage/sfStorage.class.php | 8 +- .../lib/task/app/sfAppRoutesTask.class.php | 2 +- .../lib/task/cache/sfCacheClearTask.class.php | 21 +- .../configure/sfConfigureAuthorTask.class.php | 2 +- .../generator/sfGenerateAppTask.class.php | 8 +- .../generator/sfGenerateModuleTask.class.php | 6 +- .../generator/sfGenerateProjectTask.class.php | 23 +- .../generator/sfGeneratorBaseTask.class.php | 2 +- .../task/generator/skeleton/app/web/index.php | 2 +- .../module/module/actions/actions.class.php | 12 +- .../skeleton/module/test/actionsTest.php | 2 +- .../project/lib/form/BaseForm.class.php | 2 +- .../task/generator/skeleton/project/symfony | 4 +- .../project/test/bootstrap/functional.php | 2 +- .../skeleton/project/test/bootstrap/unit.php | 4 +- .../lib/task/help/sfHelpTask.class.php | 2 +- .../lib/task/help/sfListTask.class.php | 8 +- .../lib/task/i18n/sfI18nExtractTask.class.php | 15 +- .../lib/task/i18n/sfI18nFindTask.class.php | 2 +- .../lib/task/log/sfLogClearTask.class.php | 2 +- .../lib/task/log/sfLogRotateTask.class.php | 2 +- .../plugin/sfPluginAddChannelTask.class.php | 4 +- .../task/plugin/sfPluginBaseTask.class.php | 2 +- .../task/plugin/sfPluginInstallTask.class.php | 4 +- .../task/plugin/sfPluginListTask.class.php | 8 +- .../sfPluginPublishAssetsTask.class.php | 22 +- .../plugin/sfPluginUninstallTask.class.php | 4 +- .../task/plugin/sfPluginUpgradeTask.class.php | 4 +- .../sfProjectClearControllersTask.class.php | 2 +- .../project/sfProjectDeployTask.class.php | 10 +- .../project/sfProjectDisableTask.class.php | 2 +- .../project/sfProjectEnableTask.class.php | 2 +- .../project/sfProjectOptimizeTask.class.php | 37 +- .../sfProjectPermissionsTask.class.php | 12 +- .../project/sfProjectSendEmailsTask.class.php | 2 +- .../project/sfProjectValidateTask.class.php | 4 +- .../sfDeprecatedClassesValidation.class.php | 2 +- ...atedConfigurationFilesValidation.class.php | 2 +- .../sfDeprecatedHelpersValidation.class.php | 2 +- .../sfDeprecatedMethodsValidation.class.php | 2 +- .../sfDeprecatedPluginsValidation.class.php | 2 +- .../sfDeprecatedSettingsValidation.class.php | 2 +- .../sfParameterHolderValidation.class.php | 2 +- .../project/validation/sfValidation.class.php | 2 +- .../symfony/lib/task/sfBaseTask.class.php | 181 +- .../task/sfCommandApplicationTask.class.php | 101 +- .../symfony/lib/task/sfFilesystem.class.php | 37 +- lib/vendor/symfony/lib/task/sfTask.class.php | 80 +- .../symfony/lib/task/symfony/lime_symfony.php | 2 +- .../task/symfony/sfSymfonyTestTask.class.php | 20 +- .../lib/task/test/sfLimeHarness.class.php | 17 +- .../lib/task/test/sfTestAllTask.class.php | 13 +- .../lib/task/test/sfTestBaseTask.class.php | 32 +- .../task/test/sfTestCoverageTask.class.php | 4 +- .../task/test/sfTestFunctionalTask.class.php | 6 +- .../lib/task/test/sfTestPluginTask.class.php | 75 + .../lib/task/test/sfTestUnitTask.class.php | 9 +- .../symfony/lib/test/sfTestBrowser.class.php | 4 +- .../lib/test/sfTestFunctional.class.php | 2 +- .../lib/test/sfTestFunctionalBase.class.php | 4 +- .../symfony/lib/test/sfTester.class.php | 2 +- .../symfony/lib/test/sfTesterForm.class.php | 18 +- .../symfony/lib/test/sfTesterMailer.class.php | 2 +- .../lib/test/sfTesterRequest.class.php | 2 +- .../lib/test/sfTesterResponse.class.php | 4 +- .../symfony/lib/test/sfTesterUser.class.php | 2 +- .../lib/test/sfTesterViewCache.class.php | 2 +- .../lib/user/sfBasicSecurityUser.class.php | 8 +- .../symfony/lib/user/sfSecurityUser.class.php | 2 +- lib/vendor/symfony/lib/user/sfUser.class.php | 22 +- .../symfony/lib/util/sfBrowser.class.php | 2 +- .../symfony/lib/util/sfBrowserBase.class.php | 23 +- .../symfony/lib/util/sfCallable.class.php | 2 +- .../lib/util/sfClassManipulator.class.php | 2 +- .../symfony/lib/util/sfContext.class.php | 197 +- .../lib/util/sfDomCssSelector.class.php | 8 +- .../symfony/lib/util/sfFinder.class.php | 14 +- .../symfony/lib/util/sfInflector.class.php | 9 +- .../sfNamespacedParameterHolder.class.php | 12 +- .../lib/util/sfParameterHolder.class.php | 2 +- .../symfony/lib/util/sfToolkit.class.php | 21 +- .../sfValidatorI18nChoiceCountry.class.php | 2 +- .../sfValidatorI18nChoiceLanguage.class.php | 2 +- .../sfValidatorI18nChoiceTimezone.class.php | 2 +- .../lib/validator/sfValidatedFile.class.php | 22 +- .../lib/validator/sfValidatorAnd.class.php | 12 +- .../lib/validator/sfValidatorBase.class.php | 10 +- .../validator/sfValidatorBoolean.class.php | 2 +- .../validator/sfValidatorCSRFToken.class.php | 2 +- .../validator/sfValidatorCallback.class.php | 2 +- .../lib/validator/sfValidatorChoice.class.php | 40 +- .../lib/validator/sfValidatorDate.class.php | 26 +- .../validator/sfValidatorDateRange.class.php | 4 +- .../validator/sfValidatorDateTime.class.php | 2 +- .../validator/sfValidatorDecorator.class.php | 2 +- .../lib/validator/sfValidatorEmail.class.php | 2 +- .../lib/validator/sfValidatorEqual.class.php | 65 + .../lib/validator/sfValidatorError.class.php | 2 +- .../sfValidatorErrorSchema.class.php | 88 +- .../lib/validator/sfValidatorFile.class.php | 51 +- .../validator/sfValidatorFileMulti.class.php | 20 + .../sfValidatorFromDescription.class.php | 6 +- .../validator/sfValidatorInteger.class.php | 6 +- .../lib/validator/sfValidatorIp.class.php | 111 + .../lib/validator/sfValidatorNumber.class.php | 4 +- .../lib/validator/sfValidatorOr.class.php | 10 +- .../lib/validator/sfValidatorPass.class.php | 2 +- .../lib/validator/sfValidatorRegex.class.php | 2 +- .../lib/validator/sfValidatorSchema.class.php | 47 +- .../sfValidatorSchemaCompare.class.php | 7 +- .../sfValidatorSchemaFilter.class.php | 12 +- .../sfValidatorSchemaForEach.class.php | 49 - .../lib/validator/sfValidatorString.class.php | 2 +- .../lib/validator/sfValidatorTime.class.php | 12 +- .../lib/validator/sfValidatorUrl.class.php | 2 +- lib/vendor/symfony/lib/vendor/lime/lime.php | 99 +- .../lib/vendor/swiftmailer/classes/Swift.php | 57 - .../swiftmailer/classes/Swift/Attachment.php | 75 - .../AbstractFilterableInputStream.php | 178 - .../Swift/ByteStream/ArrayByteStream.php | 190 - .../Swift/ByteStream/FileByteStream.php | 177 - .../classes/Swift/CharacterReader.php | 60 - .../GenericFixedWidthReader.php | 96 - .../Swift/CharacterReader/UsAsciiReader.php | 83 - .../Swift/CharacterReader/Utf8Reader.php | 183 - .../classes/Swift/CharacterReaderFactory.php | 29 - .../SimpleCharacterReaderFactory.php | 119 - .../classes/Swift/CharacterStream.php | 86 - .../CharacterStream/ArrayCharacterStream.php | 319 -- .../CharacterStream/NgCharacterStream.php | 300 -- .../classes/Swift/ConfigurableSpool.php | 59 - .../classes/Swift/DependencyContainer.php | 349 -- .../classes/Swift/DependencyException.php | 30 - .../classes/Swift/EmbeddedFile.php | 73 - .../swiftmailer/classes/Swift/Encoder.php | 32 - .../classes/Swift/Encoder/Base64Encoder.php | 63 - .../classes/Swift/Encoder/QpEncoder.php | 263 -- .../classes/Swift/Encoder/Rfc2231Encoder.php | 89 - .../swiftmailer/classes/Swift/Encoding.php | 70 - .../classes/Swift/Events/CommandEvent.php | 67 - .../classes/Swift/Events/CommandListener.php | 29 - .../classes/Swift/Events/Event.php | 39 - .../classes/Swift/Events/EventDispatcher.php | 81 - .../classes/Swift/Events/EventObject.php | 65 - .../classes/Swift/Events/ResponseEvent.php | 65 - .../classes/Swift/Events/ResponseListener.php | 29 - .../classes/Swift/Events/SendEvent.php | 127 - .../classes/Swift/Events/SendListener.php | 35 - .../Swift/Events/SimpleEventDispatcher.php | 175 - .../Swift/Events/TransportChangeEvent.php | 31 - .../Swift/Events/TransportChangeListener.php | 53 - .../Swift/Events/TransportExceptionEvent.php | 50 - .../Events/TransportExceptionListener.php | 30 - .../classes/Swift/FailoverTransport.php | 48 - .../swiftmailer/classes/Swift/FileSpool.php | 116 - .../swiftmailer/classes/Swift/FileStream.php | 28 - .../swiftmailer/classes/Swift/Filterable.php | 34 - .../swiftmailer/classes/Swift/Image.php | 62 - .../classes/Swift/InputByteStream.php | 72 - .../swiftmailer/classes/Swift/IoException.php | 30 - .../swiftmailer/classes/Swift/KeyCache.php | 99 - .../classes/Swift/KeyCache/ArrayKeyCache.php | 209 - .../classes/Swift/KeyCache/DiskKeyCache.php | 316 -- .../Swift/KeyCache/KeyCacheInputStream.php | 53 - .../classes/Swift/KeyCache/NullKeyCache.php | 110 - .../KeyCache/SimpleKeyCacheInputStream.php | 131 - .../classes/Swift/LoadBalancedTransport.php | 48 - .../classes/Swift/MailTransport.php | 48 - .../swiftmailer/classes/Swift/Mailer.php | 173 - .../Swift/Mailer/ArrayRecipientIterator.php | 59 - .../Swift/Mailer/RecipientIterator.php | 34 - .../swiftmailer/classes/Swift/Message.php | 87 - .../classes/Swift/Mime/Attachment.php | 143 - .../classes/Swift/Mime/CharsetObserver.php | 26 - .../classes/Swift/Mime/ContentEncoder.php | 41 - .../ContentEncoder/Base64ContentEncoder.php | 81 - .../ContentEncoder/PlainContentEncoder.php | 175 - .../Mime/ContentEncoder/QpContentEncoder.php | 117 - .../classes/Swift/Mime/EmbeddedFile.php | 51 - .../classes/Swift/Mime/EncodingObserver.php | 28 - .../swiftmailer/classes/Swift/Mime/Header.php | 85 - .../classes/Swift/Mime/HeaderEncoder.php | 28 - .../HeaderEncoder/Base64HeaderEncoder.php | 36 - .../Mime/HeaderEncoder/QpHeaderEncoder.php | 99 - .../classes/Swift/Mime/HeaderFactory.php | 72 - .../classes/Swift/Mime/HeaderSet.php | 170 - .../Swift/Mime/Headers/AbstractHeader.php | 596 --- .../classes/Swift/Mime/Headers/DateHeader.php | 118 - .../Mime/Headers/IdentificationHeader.php | 161 - .../Swift/Mime/Headers/MailboxHeader.php | 316 -- .../Mime/Headers/ParameterizedHeader.php | 274 -- .../classes/Swift/Mime/Headers/PathHeader.php | 126 - .../Swift/Mime/Headers/UnstructuredHeader.php | 108 - .../classes/Swift/Mime/Message.php | 230 - .../classes/Swift/Mime/MimeEntity.php | 108 - .../classes/Swift/Mime/MimePart.php | 196 - .../Swift/Mime/ParameterizedHeader.php | 35 - .../Swift/Mime/SimpleHeaderFactory.php | 187 - .../classes/Swift/Mime/SimpleHeaderSet.php | 396 -- .../classes/Swift/Mime/SimpleMessage.php | 609 --- .../classes/Swift/Mime/SimpleMimeEntity.php | 793 ---- .../swiftmailer/classes/Swift/MimePart.php | 65 - .../classes/Swift/NullTransport.php | 38 - .../classes/Swift/OutputByteStream.php | 41 - .../classes/Swift/Plugins/AntiFloodPlugin.php | 147 - .../Swift/Plugins/BandwidthMonitorPlugin.php | 173 - .../classes/Swift/Plugins/BlackholePlugin.php | 37 - .../Swift/Plugins/Decorator/Replacements.php | 36 - .../classes/Swift/Plugins/DecoratorPlugin.php | 201 - .../classes/Swift/Plugins/Logger.php | 37 - .../classes/Swift/Plugins/LoggerPlugin.php | 160 - .../Swift/Plugins/Loggers/ArrayLogger.php | 73 - .../Swift/Plugins/Loggers/EchoLogger.php | 64 - .../Swift/Plugins/Pop/Pop3Connection.php | 36 - .../Swift/Plugins/Pop/Pop3Exception.php | 34 - .../Swift/Plugins/PopBeforeSmtpPlugin.php | 288 -- .../Swift/Plugins/RedirectingPlugin.php | 109 - .../classes/Swift/Plugins/Reporter.php | 36 - .../classes/Swift/Plugins/ReporterPlugin.php | 82 - .../Swift/Plugins/Reporters/HitReporter.php | 63 - .../Swift/Plugins/Reporters/HtmlReporter.php | 47 - .../classes/Swift/Plugins/Sleeper.php | 26 - .../classes/Swift/Plugins/ThrottlerPlugin.php | 188 - .../classes/Swift/Plugins/Timer.php | 26 - .../swiftmailer/classes/Swift/Preferences.php | 76 - .../Swift/ReplacementFilterFactory.php | 27 - .../classes/Swift/RfcComplianceException.php | 30 - .../classes/Swift/SendmailTransport.php | 48 - .../classes/Swift/SmtpTransport.php | 56 - .../swiftmailer/classes/Swift/Spool.php | 50 - .../classes/Swift/SpoolTransport.php | 44 - .../classes/Swift/StreamFilter.php | 33 - .../ByteArrayReplacementFilter.php | 188 - .../StreamFilters/StringReplacementFilter.php | 66 - .../StringReplacementFilterFactory.php | 53 - .../classes/Swift/SwiftException.php | 28 - .../swiftmailer/classes/Swift/Transport.php | 60 - .../Swift/Transport/AbstractSmtpTransport.php | 543 --- .../Esmtp/Auth/CramMd5Authenticator.php | 88 - .../Esmtp/Auth/LoginAuthenticator.php | 58 - .../Esmtp/Auth/PlainAuthenticator.php | 57 - .../Swift/Transport/Esmtp/AuthHandler.php | 262 -- .../Swift/Transport/Esmtp/Authenticator.php | 38 - .../classes/Swift/Transport/EsmtpHandler.php | 82 - .../Swift/Transport/EsmtpTransport.php | 339 -- .../Swift/Transport/FailoverTransport.php | 97 - .../classes/Swift/Transport/IoBuffer.php | 65 - .../Swift/Transport/LoadBalancedTransport.php | 188 - .../classes/Swift/Transport/MailInvoker.php | 36 - .../classes/Swift/Transport/MailTransport.php | 242 - .../classes/Swift/Transport/NullTransport.php | 90 - .../Swift/Transport/SendmailTransport.php | 173 - .../Swift/Transport/SimpleMailInvoker.php | 58 - .../classes/Swift/Transport/SmtpAgent.php | 36 - .../Swift/Transport/SpoolTransport.php | 115 - .../classes/Swift/Transport/StreamBuffer.php | 276 -- .../classes/Swift/TransportException.php | 31 - .../dependency_maps/cache_deps.php | 25 - .../swiftmailer/dependency_maps/mime_deps.php | 97 - .../dependency_maps/transport_deps.php | 70 - .../lib/vendor/swiftmailer/mime_types.php | 76 - .../lib/vendor/swiftmailer/preferences.php | 20 - .../lib/vendor/swiftmailer/swift_init.php | 21 - .../lib/vendor/swiftmailer/swift_required.php | 22 - .../swiftmailer/swift_required_pear.php | 22 - .../symfony/lib/view/sfPHPView.class.php | 2 +- .../symfony/lib/view/sfPartialView.class.php | 20 +- lib/vendor/symfony/lib/view/sfView.class.php | 2 +- .../lib/view/sfViewCacheManager.class.php | 37 +- .../lib/view/sfViewParameterHolder.class.php | 2 +- .../sfWidgetFormI18nChoiceCountry.class.php | 2 +- .../sfWidgetFormI18nChoiceCurrency.class.php | 2 +- .../sfWidgetFormI18nChoiceLanguage.class.php | 2 +- .../sfWidgetFormI18nChoiceTimezone.class.php | 2 +- .../i18n/sfWidgetFormI18nDate.class.php | 2 +- .../i18n/sfWidgetFormI18nDateTime.class.php | 2 +- .../i18n/sfWidgetFormI18nTime.class.php | 2 +- .../symfony/lib/widget/sfWidget.class.php | 15 +- .../symfony/lib/widget/sfWidgetForm.class.php | 8 +- .../lib/widget/sfWidgetFormChoice.class.php | 18 +- .../lib/widget/sfWidgetFormDate.class.php | 4 +- .../widget/sfWidgetFormDateRange.class.php | 17 +- .../lib/widget/sfWidgetFormDateTime.class.php | 6 +- .../widget/sfWidgetFormFilterDate.class.php | 4 +- .../widget/sfWidgetFormFilterInput.class.php | 4 +- .../lib/widget/sfWidgetFormInput.class.php | 4 +- .../sfWidgetFormInputCheckbox.class.php | 4 +- .../widget/sfWidgetFormInputFile.class.php | 6 +- .../sfWidgetFormInputFileEditable.class.php | 4 +- .../sfWidgetFormInputFileMulti.class.php | 50 + .../widget/sfWidgetFormInputHidden.class.php | 4 +- .../sfWidgetFormInputPassword.class.php | 4 +- .../widget/sfWidgetFormInputRead.class.php | 71 + .../widget/sfWidgetFormInputText.class.php | 4 +- .../lib/widget/sfWidgetFormSchema.class.php | 21 +- .../sfWidgetFormSchemaDecorator.class.php | 44 +- .../sfWidgetFormSchemaForEach.class.php | 36 - .../sfWidgetFormSchemaFormatter.class.php | 4 +- .../sfWidgetFormSchemaFormatterList.class.php | 2 +- ...sfWidgetFormSchemaFormatterTable.class.php | 2 +- .../lib/widget/sfWidgetFormSelect.class.php | 13 +- .../sfWidgetFormSelectCheckbox.class.php | 6 +- .../widget/sfWidgetFormSelectMany.class.php | 4 +- .../widget/sfWidgetFormSelectRadio.class.php | 6 +- .../lib/widget/sfWidgetFormTextarea.class.php | 6 +- .../lib/widget/sfWidgetFormTime.class.php | 4 +- lib/vendor/symfony/lib/yaml/sfYaml.class.php | 167 + lib/vendor/symfony/lib/yaml/sfYaml.php | 135 - .../symfony/lib/yaml/sfYamlDumper.class.php | 58 + lib/vendor/symfony/lib/yaml/sfYamlDumper.php | 60 - .../symfony/lib/yaml/sfYamlInline.class.php | 447 ++ lib/vendor/symfony/lib/yaml/sfYamlInline.php | 442 -- .../symfony/lib/yaml/sfYamlParser.class.php | 625 +++ lib/vendor/symfony/lib/yaml/sfYamlParser.php | 588 --- lib/vendor/symfony/package.xml.tmpl | 102 + lib/vendor/symfony/polyfill-ctype/Ctype.php | 227 + lib/vendor/symfony/polyfill-ctype/LICENSE | 19 + lib/vendor/symfony/polyfill-ctype/README.md | 12 + .../symfony/polyfill-ctype/bootstrap.php | 26 + .../symfony/polyfill-ctype/composer.json | 34 + lib/vendor/symfony/polyfill-mbstring/LICENSE | 19 + .../symfony/polyfill-mbstring/Mbstring.php | 800 ++++ .../symfony/polyfill-mbstring/README.md | 13 + .../Resources/unidata/lowerCase.php | 1096 +++++ .../Resources/unidata/titleCaseRegexp.php | 5 + .../Resources/unidata/upperCase.php | 1104 +++++ .../symfony/polyfill-mbstring/bootstrap.php | 58 + .../symfony/polyfill-mbstring/composer.json | 34 + lib/vendor/symfony/process/.gitignore | 3 + lib/vendor/symfony/process/CHANGELOG.md | 90 + .../process/Exception/ExceptionInterface.php | 21 + .../Exception/InvalidArgumentException.php | 21 + .../process/Exception/LogicException.php | 21 + .../Exception/ProcessFailedException.php | 54 + .../Exception/ProcessSignaledException.php | 41 + .../Exception/ProcessTimedOutException.php | 69 + .../process/Exception/RuntimeException.php | 21 + .../symfony/process/ExecutableFinder.php | 88 + lib/vendor/symfony/process/InputStream.php | 90 + lib/vendor/symfony/process/LICENSE | 19 + .../symfony/process/PhpExecutableFinder.php | 101 + lib/vendor/symfony/process/PhpProcess.php | 75 + .../symfony/process/Pipes/AbstractPipes.php | 178 + .../symfony/process/Pipes/PipesInterface.php | 67 + .../symfony/process/Pipes/UnixPipes.php | 153 + .../symfony/process/Pipes/WindowsPipes.php | 191 + lib/vendor/symfony/process/Process.php | 1652 +++++++ lib/vendor/symfony/process/ProcessUtils.php | 69 + lib/vendor/symfony/process/README.md | 13 + .../process/Tests/ExecutableFinderTest.php | 178 + .../Tests/KillableProcessWithOutput.php | 25 + .../process/Tests/NonStopableProcess.php | 47 + .../process/Tests/PhpExecutableFinderTest.php | 49 + .../symfony/process/Tests/PhpProcessTest.php | 63 + .../PipeStdinInStdoutStdErrStreamSelect.php | 72 + .../Tests/ProcessFailedExceptionTest.php | 137 + .../symfony/process/Tests/ProcessTest.php | 1537 +++++++ .../symfony/process/Tests/SignalListener.php | 21 + lib/vendor/symfony/process/composer.json | 33 + lib/vendor/symfony/process/phpunit.xml.dist | 30 + lib/vendor/symfony/test/bin/coverage.php | 45 + lib/vendor/symfony/test/bin/loc.php | 43 + .../symfony/test/bootstrap/functional.php | 73 + lib/vendor/symfony/test/bootstrap/task.php | 22 + lib/vendor/symfony/test/bootstrap/unit.php | 68 + .../symfony/test/functional/authTest.php | 67 + .../symfony/test/functional/autoloadTest.php | 37 + .../symfony/test/functional/cacheTest.php | 513 +++ .../symfony/test/functional/escapingTest.php | 50 + .../symfony/test/functional/filterTest.php | 45 + .../fixtures/apps/cache}/config/app.yml | 0 .../fixtures/apps/cache/config/cache.yml | 4 + .../cache/config/cacheConfiguration.class.php | 8 + .../fixtures/apps/cache}/config/factories.yml | 0 .../fixtures/apps/cache}/config/filters.yml | 0 .../fixtures/apps/cache}/config/routing.yml | 0 .../fixtures/apps/cache}/config/security.yml | 0 .../fixtures/apps/cache/config/settings.yml | 22 + .../fixtures/apps/cache}/config/view.yml | 0 .../fixtures/apps/cache}/lib/myUser.class.php | 0 .../modules/cache/actions/actions.class.php | 104 + .../cache/actions/components.class.php | 36 + .../apps/cache/modules/cache/config/cache.yml | 62 + .../apps/cache/modules/cache/data/ok48.png | Bin 0 -> 3106 bytes .../templates/_anotherCacheablePartial.php | 10 + .../cache/templates/_cacheableComponent.php | 6 + .../cache/templates/_cacheablePartial.php | 8 + .../modules/cache/templates/_component.php | 1 + .../_contextualCacheableComponent.php | 1 + .../templates/_contextualCacheablePartial.php | 1 + .../cache/templates/_contextualComponent.php | 1 + .../cache/templates/_contextualPartial.php | 1 + .../modules/cache/templates/_partial.php | 1 + .../modules/cache/templates/actionSuccess.php | 1 + .../cache/templates/anotherPartialSuccess.php | 1 + .../cache/templates/componentSuccess.php | 2 + .../modules/cache/templates/imageSuccess.php | 1 + .../modules/cache/templates/indexSuccess.php | 3 + .../modules/cache/templates/listSuccess.php | 1 + .../cache/templates/multiBisSuccess.php | 10 + .../modules/cache/templates/multiSuccess.php | 30 + .../modules/cache/templates/pageSuccess.php | 1 + .../cache/templates/partialSuccess.php | 1 + .../templates/specificCacheKeySuccess.php | 5 + .../httpcache/actions/actions.class.php | 28 + .../cache/modules/httpcache/config/cache.yml | 11 + .../httpcache/templates/indexSuccess.php | 1 + .../modules/nocache/actions/actions.class.php | 20 + .../cache/modules/nocache/config/cache.yml | 2 + .../nocache/templates/indexSuccess.php | 3 + .../fixtures/apps/cache/templates/image.php | 1 + .../fixtures/apps/cache/templates/layout.php | 25 + .../fixtures/apps/frontend}/config/app.yml | 0 .../fixtures/apps/frontend}/config/cache.yml | 0 .../frontend/config/dirmyconfig/myconfig.yml | 0 .../apps/frontend}/config/factories.yml | 0 .../fixtures/apps/frontend/config/filters.yml | 11 + .../config/frontendConfiguration.class.php | 42 + .../fixtures/apps/frontend/config/routing.yml | 19 + .../apps/frontend}/config/security.yml | 0 .../apps/frontend/config/services.yml | 12 + .../apps/frontend/config/settings.yml | 25 + .../fixtures/apps/frontend/config/view.yml | 24 + .../lib/myAppsFrontendLibClass.class.php | 9 + .../apps/frontend/lib/myAutoload.class.php | 16 + .../frontend/lib/myAutoloadedClass.class.php | 9 + .../apps/frontend/lib/myFilter.class.php | 22 + .../apps/frontend}/lib/myUser.class.php | 0 .../assetInclusion/actions/actions.class.php | 16 + .../modules/assetInclusion/config/view.yml | 7 + .../assetInclusion/templates/indexSuccess.php | 1 + .../modules/auth/actions/actions.class.php | 33 + .../modules/auth/templates/basicSuccess.php | 3 + .../autoload/actions/actions.class.php | 25 + ...myAppsFrontendModulesAutoloadLib.class.php | 9 + .../autoload/templates/indexSuccess.php | 4 + .../autoload/templates/myAutoloadSuccess.php | 1 + .../modules/browser/actions/actions.class.php | 62 + .../templates/redirectTarget1Success.php | 1 + .../templates/templateCustomCustomSuccess.php | 1 + .../templates/templateCustomSuccess.php | 1 + .../actions/actions.class.php | 16 + .../config/filters.yml | 14 + .../configFiltersSimpleFilterFilter.class.php | 12 + .../templates/indexSuccess.php | 1 + .../actions/actions.class.php | 16 + .../configModuleDisabled/config/module.yml | 2 + .../templates/indexSuccess.php | 0 .../actions/actions.class.php | 16 + .../config/security.yml | 3 + .../templates/indexSuccess.php | 0 .../actions/actions.class.php | 16 + .../config/security.yml | 3 + .../templates/indexSuccess.php | 0 .../actions/actions.class.php | 17 + .../templates/indexSuccess.php | 0 .../actions/actions.class.php | 16 + .../configViewHasLayout/config/view.yml | 2 + .../templates/withoutLayoutSuccess.php | 1 + .../modules/cookie/actions/actions.class.php | 31 + .../escaping/actions/actions.class.php | 29 + .../modules/escaping/templates/_partial1.php | 6 + .../modules/escaping/templates/_partial2.php | 4 + .../escaping/templates/indexSuccess.php | 4 + .../exception/actions/actions.class.php | 27 + .../modules/filter/actions/actions.class.php | 22 + .../modules/format/actions/actions.class.php | 46 + .../format/templates/_js_header.js.php | 1 + .../format/templates/indexSuccess.css.php | 1 + .../format/templates/indexSuccess.iphone.php | 1 + .../format/templates/indexSuccess.js.php | 3 + .../modules/format/templates/indexSuccess.php | 1 + .../format/templates/indexSuccess.xml.php | 1 + .../modules/format/templates/jsSuccess.js.php | 1 + .../notfound/actions/actions.class.php | 19 + .../presentation/actions/actions.class.php | 22 + .../presentation/templates/fooSuccess.php | 1 + .../presentation/templates/indexSuccess.php | 2 + .../renderText/actions/actions.class.php | 17 + .../config/dirmyconfig/myconfig.yml | 0 .../modules/sfConfigPlugin/config/filters.yml | 0 .../modules/sfConfigPlugin/config/view.yml | 0 .../modules/view/actions/actions.class.php | 25 + .../frontend/modules/view/config/view.yml | 16 + .../modules/view/templates/fooSuccess.php | 1 + .../modules/view/templates/imageSuccess.php | 1 + .../modules/view/templates/plainSuccess.php | 1 + .../frontend/templates/layout.iphone.php} | 0 .../apps/frontend}/templates/layout.php | 0 .../apps/frontend/templates/layout.xml.php | 3 + .../fixtures/apps/i18n/config/app.yml | 2 + .../fixtures/apps/i18n}/config/cache.yml | 0 .../fixtures/apps/i18n}/config/factories.yml | 0 .../fixtures/apps/i18n/config/filters.yml | 8 + .../i18n/config/i18nConfiguration.class.php | 10 + .../fixtures/apps/i18n/config/routing.yml | 7 + .../fixtures/apps/i18n}/config/security.yml | 0 .../fixtures/apps/i18n/config/settings.yml | 25 + .../fixtures/apps/i18n}/config/view.yml | 0 .../fixtures/apps/i18n/i18n/messages.fr.xml | 15 + .../fixtures/apps/i18n/i18n/other.fr.xml | 11 + .../fixtures/apps/i18n}/lib/myUser.class.php | 0 .../modules/i18n/actions/actions.class.php | 47 + .../apps/i18n/modules/i18n/i18n/custom.fr.xml | 19 + .../i18n/modules/i18n/i18n/messages.fr.xml | 35 + .../apps/i18n/modules/i18n/i18n/other.fr.xml | 11 + .../lib/I18nCustomCatalogueForm.class.php | 9 + .../i18n/modules/i18n/lib/I18nForm.class.php | 24 + .../i18n/templates/i18nFormSuccess.php | 8 + .../modules/i18n/templates/indexSuccess.php | 13 + .../modules/sfI18NPlugin/i18n/messages.fr.xml | 11 + .../fixtures/apps/i18n/templates/layout.php | 21 + .../config/ProjectConfiguration.class.php | 13 + .../functional/fixtures/config/databases.yml | 1 + .../fixtures/config/dirmyconfig/myconfig.yml | 0 .../functional/fixtures/config/filters.yml | 8 + .../functional/fixtures/config/properties.ini | 3 + .../functional/fixtures/config/services.yml | 9 + .../test/functional/fixtures/config/view.yml | 0 .../fixtures/data/environment.migrated | 0 .../fixtures/lib/ExtendMe.class.php | 5 + .../fixtures/lib/form/BaseForm.class.php | 13 + .../fixtures/lib/myLibClass.class.php | 9 + .../config/NotInLib.class.php | 5 + .../sfAutoloadPlugin/config/autoload.yml | 11 + .../sfAutoloadPluginConfiguration.class.php | 5 + .../lib/BaseExtendMe.class.php | 5 + .../sfAutoloadPlugin/lib/ExtendMe.class.php | 5 + .../lib/vendor/ExcludedFromAutoload.class.php | 5 + .../autoloadPlugin/actions/actions.class.php | 11 + ...adPluginModulesAutoloadPluginLib.class.php | 9 + .../autoloadPlugin/templates/indexSuccess.php | 3 + .../test/functional/BarFunctionalTest.php | 0 .../test/functional/FooFunctionalTest.php | 0 .../nested/NestedFunctionalTest.php | 0 .../test/unit/BarUnitTest.php | 0 .../test/unit/FooUnitTest.php | 0 .../test/unit/nested/NestedUnitTest.php | 0 .../config/dirmyconfig/myconfig.yml | 0 .../plugins/sfConfigPlugin/config/filters.yml | 7 + .../sfConfigPlugin/config/services.yml | 9 + .../plugins/sfConfigPlugin/config/view.yml | 0 .../config/dirmyconfig/myconfig.yml | 0 .../modules/sfConfigPlugin/config/filters.yml | 0 .../modules/sfConfigPlugin/config/view.yml | 0 .../plugins/sfI18NPlugin/i18n/messages.fr.xml | 11 + .../sfI18NPlugin/actions/actions.class.php | 24 + .../modules/sfI18NPlugin/i18n/messages.fr.xml | 23 + .../sfI18NPlugin/templates/indexSuccess.php | 16 + .../symfony/test/functional/fixtures/symfony | 15 + .../symfony/test/functional/formatTest.php | 125 + .../symfony/test/functional/genericTest.php | 236 + .../symfony/test/functional/httpcacheTest.php | 61 + .../symfony/test/functional/i18nFormTest.php | 79 + .../symfony/test/functional/i18nTest.php | 104 + .../symfony/test/functional/prodTest.php | 82 + .../test/functional/sfTestBrowserTest.php | 263 ++ .../symfony/test/other/fixtures/factories.yml | 27 + .../fixtures/task/myPluginTask.class.php | 12 + .../test/functional/result-harness.txt | 8 + .../other/fixtures/test/functional/result.txt | 7 + .../other/fixtures/test/result-harness.txt | 9 + .../fixtures/test/unit/result-harness.txt | 3 + .../test/other/fixtures/test/unit/result.txt | 3 + .../other/fixtures/test/unit/testTest.php | 7 + lib/vendor/symfony/test/other/tasksTest.php | 132 + .../test/unit/action/sfComponentTest.php | 58 + .../symfony/test/unit/addon/sfPagerTest.php | 43 + .../test/unit/autoload/sfCoreAutoloadTest.php | 16 + .../unit/autoload/sfSimpleAutoloadTest.php | 19 + .../test/unit/cache/sfAPCCacheTest.php | 42 + .../unit/cache/sfCacheDriverTests.class.php | 181 + .../symfony/test/unit/cache/sfCacheTest.php | 35 + .../unit/cache/sfEAcceleratorCacheTest.php | 36 + .../test/unit/cache/sfFileCacheTest.php | 40 + .../test/unit/cache/sfFunctionCacheTest.php | 109 + .../test/unit/cache/sfMemcacheCacheTest.php | 69 + .../symfony/test/unit/cache/sfNoCacheTest.php | 28 + .../test/unit/cache/sfSQLiteCacheTest.php | 55 + .../test/unit/cache/sfXCacheCacheTest.php | 36 + .../unit/command/sfCommandArgumentSetTest.php | 142 + .../unit/command/sfCommandArgumentTest.php | 94 + .../unit/command/sfCommandManagerTest.php | 166 + .../unit/command/sfCommandOptionSetTest.php | 144 + .../test/unit/command/sfCommandOptionTest.php | 127 + .../sfCompileConfigHandler/simple.yml | 1 + .../prefix_all.yml | 15 + .../prefix_default.yml | 11 + .../prefix_result.php | 13 + .../sfFilterConfigHandler/condition.yml | 14 + .../sfFilterConfigHandler/default_filters.yml | 12 + .../sfFilterConfigHandler/disable.yml | 13 + .../sfFilterConfigHandler/filters.yml | 11 + .../sfFilterConfigHandler/no_class.yml | 5 + .../sfFilterConfigHandler/no_execution.yml | 7 + .../sfFilterConfigHandler/no_rendering.yml | 7 + .../sfFilterConfigHandler/not_disabled.yml | 2 + .../fixtures/sfFilterConfigHandler/result.php | 25 + .../sfGeneratorConfigHandler/empty.yml | 0 .../no_generator_class.yml | 4 + .../no_generator_section.yml | 2 + .../root_edit_section.yml | 7 + .../root_fields_section.yml | 7 + .../root_list_section.yml | 7 + .../sfSimpleYamlConfigHandler/config.yml | 3 + .../sfSimpleYamlConfigHandler/config_bis.yml | 3 + .../config/sfCompileConfigHandlerTest.php | 28 + .../test/unit/config/sfConfigHandlerTest.php | 54 + .../symfony/test/unit/config/sfConfigTest.php | 53 + .../sfDefineEnvironmentConfigHandlerTest.php | 33 + .../unit/config/sfFilterConfigHandlerTest.php | 100 + .../config/sfGeneratorConfigHandlerTest.php | 96 + .../unit/config/sfPluginConfigurationTest.php | 76 + .../config/sfProjectConfigurationTest.php | 72 + .../config/sfSimpleYamlConfigHandlerTest.php | 33 + .../unit/config/sfViewConfigHandlerTest.php | 351 ++ .../unit/config/sfYamlConfigHandlerTest.php | 85 + .../test/unit/controller/sfControllerTest.php | 28 + .../unit/controller/sfWebControllerTest.php | 214 + .../test/unit/database/sfDatabaseTest.php | 30 + .../symfony/test/unit/debug/sfDebugTest.php | 19 + .../symfony/test/unit/debug/sfTimerTest.php | 31 + .../test/unit/debug/sfWebDebugTest.php | 58 + .../sfOutputEscaperArrayDecoratorTest.php | 91 + .../sfOutputEscaperObjectDecoratorTest.php | 98 + .../unit/escaper/sfOutputEscaperSafeTest.php | 92 + .../test/unit/escaper/sfOutputEscaperTest.php | 158 + .../test/unit/event/sfEventDispatcherTest.php | 131 + .../symfony/test/unit/event/sfEventTest.php | 61 + .../test/unit/exception/sfExceptionsTest.php | 44 + .../symfony/test/unit/filter/sfFilterTest.php | 52 + .../unit/form/addon/sfFormSymfonyTest.php | 85 + .../test/unit/form/sfFormFieldSchemaTest.php | 105 + .../test/unit/form/sfFormFieldTest.php | 233 + .../symfony/test/unit/form/sfFormTest.php | 1050 +++++ .../test/unit/generator/sfGeneratorTest.php | 25 + ...sfModelGeneratorConfigurationFieldTest.php | 36 + .../test/unit/helper/AssetHelperTest.php | 280 ++ .../test/unit/helper/DateHelperTest.php | 108 + .../test/unit/helper/EscapingHelperTest.php | 44 + .../unit/helper/JavascriptBaseHelperTest.php | 44 + .../test/unit/helper/NumberHelperTest.php | 37 + .../test/unit/helper/PartialHelperTest.php | 64 + .../test/unit/helper/TagHelperTest.php | 65 + .../symfony/test/unit/helper/TestObject.php | 45 + .../test/unit/helper/TextHelperTest.php | 153 + .../test/unit/helper/UrlHelperTest.php | 149 + .../test/unit/helper/fixtures/tiny_mce.js | 0 .../symfony/test/unit/i18n/dataTest.php | 112 + .../unit/i18n/extract/sfI18nExtractTest.php | 56 + .../i18n/extract/sfI18nPhpExtractorTest.php | 83 + .../sfI18nYamlGeneratorExtractorTest.php | 63 + .../sfI18nYamlValidateExtractorTest.php | 44 + .../test/unit/i18n/fixtures/messages.fr.xml | 23 + .../unit/i18n/fixtures/messages.fr_BE.xml | 15 + .../unit/i18n/fixtures/messages_bis.fr.xml | 11 + .../test/unit/i18n/sfChoiceFormatTest.php | 163 + .../test/unit/i18n/sfCultureInfoTest.php | 281 ++ .../symfony/test/unit/i18n/sfI18NTest.php | 133 + .../test/unit/i18n/sfMessageSourceTest.php | 35 + .../i18n/sfMessageSource_AggregateTest.php | 82 + .../unit/i18n/sfMessageSource_FileTest.php | 52 + .../unit/i18n/sfMessageSource_SQLiteTest.php | 120 + .../unit/i18n/sfMessageSource_XLIFFTest.php | 74 + .../test/unit/i18n/sfNumberFormatInfoTest.php | 135 + .../test/unit/log/sfAggregateLoggerTest.php | 57 + .../test/unit/log/sfConsoleLoggerTest.php | 20 + .../test/unit/log/sfFileLoggerTest.php | 89 + .../symfony/test/unit/log/sfLoggerTest.php | 105 + .../test/unit/log/sfLoggerWrapperTest.php | 43 + .../test/unit/log/sfStreamLoggerTest.php | 22 + .../symfony/test/unit/log/sfVarLoggerTest.php | 34 + .../test/unit/log/sfWebDebugLoggerTest.php | 25 + .../mailer/fixtures/TestMailMessage.class.php | 19 + .../fixtures/TestMailerTransport.class.php | 60 + .../unit/mailer/fixtures/TestSpool.class.php | 63 + .../symfony/test/unit/mailer/sfMailerTest.php | 182 + .../REST/p/sffooplugin/info.xml | 11 + .../REST/p/sftestplugin/info.xml | 11 + .../REST/r/sffooplugin/1.0.0.xml | 16 + .../REST/r/sffooplugin/allreleases.xml | 6 + .../REST/r/sffooplugin/deps.1.0.0.txt | 1 + .../REST/r/sftestplugin/1.0.0.xml | 16 + .../REST/r/sftestplugin/1.0.3.xml | 16 + .../REST/r/sftestplugin/1.0.4.xml | 16 + .../REST/r/sftestplugin/1.1.3.xml | 16 + .../REST/r/sftestplugin/1.1.4.xml | 16 + .../REST/r/sftestplugin/allreleases.xml | 10 + .../REST/r/sftestplugin/deps.1.0.0.txt | 1 + .../REST/r/sftestplugin/deps.1.0.3.txt | 1 + .../REST/r/sftestplugin/deps.1.0.4.txt | 1 + .../REST/r/sftestplugin/deps.1.1.3.txt | 1 + .../REST/r/sftestplugin/deps.1.1.4.txt | 1 + .../http/pear.example.com/channel.xml | 14 + .../get/sfFooPlugin/sfFooPlugin-1.0.0.tgz | Bin 0 -> 835 bytes .../get/sfTestPlugin/sfTestPlugin-1.0.0.tgz | Bin 0 -> 816 bytes .../get/sfTestPlugin/sfTestPlugin-1.0.3.tgz | Bin 0 -> 819 bytes .../get/sfTestPlugin/sfTestPlugin-1.0.4.tgz | Bin 0 -> 815 bytes .../get/sfTestPlugin/sfTestPlugin-1.1.3.tgz | Bin 0 -> 825 bytes .../get/sfTestPlugin/sfTestPlugin-1.1.4.tgz | Bin 0 -> 823 bytes .../plugin/fixtures/sfFooPlugin/package.xml | 60 + .../sfFooPlugin/sfFooPlugin-1.0.0/VERSION | 1 + .../sfTestPlugin-1.0.0/package.xml | 53 + .../sfTestPlugin-1.0.0/VERSION | 1 + .../sfTestPlugin-1.0.3/package.xml | 53 + .../sfTestPlugin-1.0.3/VERSION | 1 + .../sfTestPlugin-1.0.4/package.xml | 53 + .../sfTestPlugin-1.0.4/VERSION | 1 + .../sfTestPlugin-1.1.3/package.xml | 53 + .../sfTestPlugin-1.1.3/VERSION | 1 + .../sfTestPlugin-1.1.4/package.xml | 53 + .../sfTestPlugin-1.1.4/VERSION | 1 + .../plugin/sfPearDownloaderTest.class.php | 44 + .../unit/plugin/sfPearEnvironmentTest.php | 72 + .../test/unit/plugin/sfPearRestPluginTest.php | 66 + .../test/unit/plugin/sfPearRestTest.class.php | 47 + .../test/unit/plugin/sfPluginManagerTest.php | 267 ++ .../unit/plugin/sfPluginTestHelper.class.php | 28 + .../test/unit/request/sfRequestTest.php | 102 + .../test/unit/request/sfWebRequestTest.php | 581 +++ .../test/unit/response/sfResponseTest.php | 54 + .../test/unit/response/sfWebResponseTest.php | 318 ++ .../routing/fixtures/config_routing.yml.php | 3 + .../routing/sfObjectRouteCollectionTest.php | 126 + .../test/unit/routing/sfObjectRouteTest.php | 44 + .../unit/routing/sfPatternRoutingTest.php | 646 +++ .../test/unit/routing/sfRequestRouteTest.php | 49 + .../symfony/test/unit/routing/sfRouteTest.php | 273 ++ .../fixtures/containers/container10.php | 11 + .../fixtures/containers/container8.php | 10 + .../fixtures/containers/container9.php | 35 + .../service/fixtures/graphviz/services1.dot | 7 + .../fixtures/graphviz/services10-1.dot | 10 + .../service/fixtures/graphviz/services10.dot | 10 + .../service/fixtures/graphviz/services9.dot | 15 + .../service/fixtures/includes/classes.php | 32 + .../unit/service/fixtures/includes/foo.php | 34 + .../unit/service/fixtures/php/services1-1.php | 4 + .../unit/service/fixtures/php/services1.php | 4 + .../unit/service/fixtures/php/services8.php | 27 + .../unit/service/fixtures/php/services9.php | 64 + .../unit/service/fixtures/yaml/nonvalid1.yml | 2 + .../unit/service/fixtures/yaml/nonvalid2.yml | 1 + .../unit/service/fixtures/yaml/services1.yml | 1 + .../unit/service/fixtures/yaml/services2.yml | 9 + .../unit/service/fixtures/yaml/services3.yml | 20 + .../service/sfServiceContainerBuilderTest.php | 233 + .../sfServiceContainerDumperGraphvizTest.php | 44 + .../sfServiceContainerDumperPhpTest.php | 50 + .../service/sfServiceContainerDumperTest.php | 29 + .../sfServiceContainerLoaderArrayTest.php | 75 + .../service/sfServiceContainerLoaderTest.php | 79 + .../unit/service/sfServiceContainerTest.php | 142 + .../unit/service/sfServiceDefinitionTest.php | 69 + .../unit/service/sfServiceParameterTest.php | 19 + .../unit/service/sfServiceReferenceTest.php | 19 + .../symfony/test/unit/sfContextMock.class.php | 127 + .../test/unit/sfEventDispatcherTest.class.php | 51 + .../symfony/test/unit/sfNoRouting.class.php | 113 + .../test/unit/sfParameterHolderTest.class.php | 57 + .../storage/sfCacheSessionStorageTest.php | 66 + .../test/unit/storage/sfMySQLStorageTest.php | 149 + .../test/unit/storage/sfMySQLiStorageTest.php | 153 + .../test/unit/storage/sfNoStorageTest.php | 21 + .../unit/storage/sfPDOSessionStorageTest.php | 110 + .../unit/storage/sfSessionStorageTest.php | 61 + .../test/unit/storage/sfStorageTest.php | 26 + .../unit/task/cache/sfCacheClearTaskTest.php | 35 + .../symfony/test/unit/task/sfBaseTaskTest.php | 139 + .../test/unit/task/sfFilesystemTest.php | 65 + .../symfony/test/unit/task/sfTaskTest.php | 132 + .../symfony/test/unit/test/limeTestTest.php | 45 + .../test/unit/test/sfTestFunctionalTest.php | 70 + .../unit/user/sfBasicSecurityUserTest.php | 169 + .../symfony/test/unit/user/sfUserTest.php | 100 + .../test/unit/util/fixtures/finder/FILE5.txt | 0 .../fixtures/finder/dir1/dir2/dir3/file31 | 0 .../fixtures/finder/dir1/dir2/dir4/file41 | 0 .../util/fixtures/finder/dir1/dir2/file21.php | 0 .../util/fixtures/finder/dir1/dir2/file22 | 0 .../util/fixtures/finder/dir1/dir2/file23 | 0 .../util/fixtures/finder/dir1/dir2/file24 | 0 .../unit/util/fixtures/finder/dir1/file11 | 0 .../unit/util/fixtures/finder/dir1/file12.php | 0 .../unit/util/fixtures/finder/dir1/file13 | 0 .../test/unit/util/fixtures/finder/file1 | 7 + .../test/unit/util/fixtures/finder/file2.txt | 0 .../fixtures/finder_permissions/secret/passwd | 1 + .../symfony/test/unit/util/sfBrowserTest.php | 366 ++ .../symfony/test/unit/util/sfCallableTest.php | 53 + .../test/unit/util/sfClassManipulatorTest.php | 271 ++ .../symfony/test/unit/util/sfContextTest.php | 121 + .../test/unit/util/sfDomCssSelectorTest.php | 209 + .../symfony/test/unit/util/sfFinderTest.php | 229 + .../test/unit/util/sfInflectorTest.php | 31 + .../util/sfNamespacedParameterHolderTest.php | 215 + .../test/unit/util/sfParameterHolderTest.php | 143 + .../symfony/test/unit/util/sfToolkitTest.php | 255 ++ .../i18n/sfValidatorI18nChoiceCountryTest.php | 34 + .../sfValidatorI18nChoiceLanguageTest.php | 34 + .../sfValidatorI18nChoiceTimezoneTest.php | 21 + .../unit/validator/sfValidatorAndTest.php | 131 + .../unit/validator/sfValidatorBaseTest.php | 246 + .../unit/validator/sfValidatorBooleanTest.php | 54 + .../validator/sfValidatorCSRFTokenTest.php | 47 + .../validator/sfValidatorCallbackTest.php | 65 + .../unit/validator/sfValidatorChoiceTest.php | 112 + .../validator/sfValidatorDateRangeTest.php | 70 + .../unit/validator/sfValidatorDateTest.php | 246 + .../validator/sfValidatorDateTimeTest.php | 23 + .../validator/sfValidatorDecoratorTest.php | 122 + .../unit/validator/sfValidatorEmailTest.php | 46 + .../unit/validator/sfValidatorEqualTest.php | 83 + .../validator/sfValidatorErrorSchemaTest.php | 216 + .../unit/validator/sfValidatorErrorTest.php | 91 + .../validator/sfValidatorFileMultiTest.php | 44 + .../unit/validator/sfValidatorFileTest.php | 303 ++ .../sfValidatorFromDescriptionTest.php | 125 + .../unit/validator/sfValidatorIntegerTest.php | 101 + .../test/unit/validator/sfValidatorIpTest.php | 276 ++ .../unit/validator/sfValidatorNumberTest.php | 88 + .../test/unit/validator/sfValidatorOrTest.php | 106 + .../unit/validator/sfValidatorPassTest.php | 20 + .../unit/validator/sfValidatorRegexTest.php | 89 + .../sfValidatorSchemaCompareTest.php | 121 + .../validator/sfValidatorSchemaFilterTest.php | 55 + .../unit/validator/sfValidatorSchemaTest.php | 423 ++ .../unit/validator/sfValidatorStringTest.php | 88 + .../unit/validator/sfValidatorTimeTest.php | 142 + .../unit/validator/sfValidatorUrlTest.php | 61 + .../test/unit/view/sfViewCacheManagerTest.php | 304 ++ .../unit/view/sfViewParameterHolderTest.php | 123 + .../symfony/test/unit/view/sfViewTest.php | 81 + .../sfWidgetFormI18nChoiceCountryTest.php | 56 + .../sfWidgetFormI18nChoiceCurrencyTest.php | 55 + .../sfWidgetFormI18nChoiceLanguageTest.php | 51 + .../sfWidgetFormI18nChoiceTimezoneTest.php | 36 + .../widget/i18n/sfWidgetFormI18nDateTest.php | 48 + .../i18n/sfWidgetFormI18nDateTimeTest.php | 22 + .../widget/i18n/sfWidgetFormI18nTimeTest.php | 27 + .../unit/widget/sfWidgetFormChoiceTest.php | 121 + .../unit/widget/sfWidgetFormDateRangeTest.php | 48 + .../test/unit/widget/sfWidgetFormDateTest.php | 144 + .../unit/widget/sfWidgetFormDateTimeTest.php | 154 + .../widget/sfWidgetFormFilterDateTest.php | 49 + .../widget/sfWidgetFormFilterInputTest.php | 39 + .../widget/sfWidgetFormInputCheckboxTest.php | 28 + .../sfWidgetFormInputFileEditableTest.php | 80 + .../widget/sfWidgetFormInputFileMultiTest.php | 13 + .../unit/widget/sfWidgetFormInputFileTest.php | 19 + .../widget/sfWidgetFormInputHiddenTest.php | 23 + .../widget/sfWidgetFormInputPasswordTest.php | 24 + .../unit/widget/sfWidgetFormInputReadTest.php | 28 + .../unit/widget/sfWidgetFormInputTextTest.php | 25 + .../sfWidgetFormSchemaDecoratorTest.php | 75 + .../sfWidgetFormSchemaFormatterListTest.php | 40 + .../sfWidgetFormSchemaFormatterTableTest.php | 40 + .../sfWidgetFormSchemaFormatterTest.php | 180 + .../unit/widget/sfWidgetFormSchemaTest.php | 489 ++ .../widget/sfWidgetFormSelectCheckboxTest.php | 132 + .../widget/sfWidgetFormSelectManyTest.php | 21 + .../widget/sfWidgetFormSelectRadioTest.php | 125 + .../unit/widget/sfWidgetFormSelectTest.php | 139 + .../test/unit/widget/sfWidgetFormTest.php | 118 + .../unit/widget/sfWidgetFormTextareaTest.php | 26 + .../test/unit/widget/sfWidgetFormTimeTest.php | 152 + .../symfony/test/unit/widget/sfWidgetTest.php | 168 + .../unit/yaml/fixtures/YtsAnchorAlias.yml | 31 + .../test/unit/yaml/fixtures/YtsBasicTests.yml | 178 + .../unit/yaml/fixtures/YtsBlockMapping.yml | 52 + .../yaml/fixtures/YtsDocumentSeparator.yml | 85 + .../test/unit/yaml/fixtures/YtsErrorTests.yml | 26 + .../unit/yaml/fixtures/YtsFlowCollections.yml | 60 + .../unit/yaml/fixtures/YtsFoldedScalars.yml | 176 + .../unit/yaml/fixtures/YtsNullsAndEmpties.yml | 45 + .../fixtures/YtsSpecificationExamples.yml | 1681 +++++++ .../unit/yaml/fixtures/YtsTypeTransfers.yml | 244 + .../symfony/test/unit/yaml/fixtures/index.yml | 15 + .../test/unit/yaml/fixtures/sfComments.yml | 51 + .../test/unit/yaml/fixtures/sfMergeKey.yml | 27 + .../test/unit/yaml/fixtures/sfObjects.yml | 11 + .../test/unit/yaml/fixtures/sfQuotes.yml | 33 + .../test/unit/yaml/fixtures/sfTests.yml | 153 + .../test/unit/yaml/sfYamlDumperTest.php | 149 + .../test/unit/yaml/sfYamlInlineTest.php | 145 + .../test/unit/yaml/sfYamlParserTest.php | 89 + lib/vendor/symfony/yaml/.gitignore | 3 + lib/vendor/symfony/yaml/CHANGELOG.md | 184 + .../symfony/yaml/Command/LintCommand.php | 253 + lib/vendor/symfony/yaml/Dumper.php | 97 + lib/vendor/symfony/yaml/Escaper.php | 101 + .../symfony/yaml/Exception/DumpException.php | 21 + .../yaml/Exception/ExceptionInterface.php | 21 + .../symfony/yaml/Exception/ParseException.php | 139 + .../yaml/Exception/RuntimeException.php | 21 + lib/vendor/symfony/yaml/Inline.php | 746 +++ lib/vendor/symfony/yaml/LICENSE | 19 + lib/vendor/symfony/yaml/Parser.php | 1075 +++++ lib/vendor/symfony/yaml/README.md | 13 + lib/vendor/symfony/yaml/Tag/TaggedValue.php | 38 + .../yaml/Tests/Command/LintCommandTest.php | 151 + lib/vendor/symfony/yaml/Tests/DumperTest.php | 429 ++ .../yaml/Tests/Fixtures/YtsAnchorAlias.yml | 31 + .../yaml/Tests/Fixtures/YtsBasicTests.yml | 202 + .../yaml/Tests/Fixtures/YtsBlockMapping.yml | 51 + .../Tests/Fixtures/YtsDocumentSeparator.yml | 85 + .../yaml/Tests/Fixtures/YtsErrorTests.yml | 25 + .../Tests/Fixtures/YtsFlowCollections.yml | 60 + .../yaml/Tests/Fixtures/YtsFoldedScalars.yml | 176 + .../Tests/Fixtures/YtsNullsAndEmpties.yml | 45 + .../Fixtures/YtsSpecificationExamples.yml | 1662 +++++++ .../yaml/Tests/Fixtures/YtsTypeTransfers.yml | 224 + .../symfony/yaml/Tests/Fixtures/arrow.gif | Bin 0 -> 185 bytes .../Tests/Fixtures/booleanMappingKeys.yml | 11 + .../yaml/Tests/Fixtures/embededPhp.yml | 1 + .../yaml/Tests/Fixtures/escapedCharacters.yml | 155 + .../symfony/yaml/Tests/Fixtures/index.yml | 18 + .../multiple_lines_as_literal_block.yml | 14 + ...eral_block_leading_space_in_first_line.yml | 4 + .../yaml/Tests/Fixtures/nonStringKeys.yml | 3 + .../yaml/Tests/Fixtures/not_readable.yml | 18 + .../yaml/Tests/Fixtures/nullMappingKey.yml | 9 + .../Tests/Fixtures/numericMappingKeys.yml | 23 + .../yaml/Tests/Fixtures/sfComments.yml | 76 + .../symfony/yaml/Tests/Fixtures/sfCompact.yml | 159 + .../yaml/Tests/Fixtures/sfMergeKey.yml | 61 + .../symfony/yaml/Tests/Fixtures/sfObjects.yml | 11 + .../symfony/yaml/Tests/Fixtures/sfQuotes.yml | 33 + .../symfony/yaml/Tests/Fixtures/sfTests.yml | 140 + .../Tests/Fixtures/unindentedCollections.yml | 82 + lib/vendor/symfony/yaml/Tests/InlineTest.php | 760 +++ .../symfony/yaml/Tests/ParseExceptionTest.php | 34 + lib/vendor/symfony/yaml/Tests/ParserTest.php | 2150 +++++++++ lib/vendor/symfony/yaml/Tests/YamlTest.php | 44 + lib/vendor/symfony/yaml/Unescaper.php | 138 + lib/vendor/symfony/yaml/Yaml.php | 101 + lib/vendor/symfony/yaml/composer.json | 43 + lib/vendor/symfony/yaml/phpunit.xml.dist | 30 + web/language_files/.gitignore | 0 3882 files changed, 195584 insertions(+), 182795 deletions(-) create mode 100644 lib/composer.json create mode 100644 lib/composer.lock create mode 100644 lib/model/Doctrine.php create mode 100644 lib/vendor/autoload.php create mode 120000 lib/vendor/bin/symfony create mode 100644 lib/vendor/composer/ClassLoader.php create mode 100644 lib/vendor/composer/LICENSE create mode 100644 lib/vendor/composer/autoload_classmap.php create mode 100644 lib/vendor/composer/autoload_files.php create mode 100644 lib/vendor/composer/autoload_namespaces.php create mode 100644 lib/vendor/composer/autoload_psr4.php create mode 100644 lib/vendor/composer/autoload_real.php create mode 100644 lib/vendor/composer/autoload_static.php create mode 100644 lib/vendor/composer/installed.json create mode 100644 lib/vendor/composer/installers/LICENSE create mode 100644 lib/vendor/composer/installers/composer.json create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/AglInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/DframeInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/GravInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/Installer.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/MantisBTInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/Plugin.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/Redaxo5Installer.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/SyliusInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/TaoInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php create mode 100644 lib/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php create mode 100644 lib/vendor/composer/installers/src/bootstrap.php create mode 100644 lib/vendor/doctrine/instantiator/.doctrine-project.json create mode 100644 lib/vendor/doctrine/instantiator/CONTRIBUTING.md create mode 100644 lib/vendor/doctrine/instantiator/LICENSE create mode 100644 lib/vendor/doctrine/instantiator/README.md create mode 100644 lib/vendor/doctrine/instantiator/composer.json create mode 100644 lib/vendor/doctrine/instantiator/docs/en/index.rst create mode 100644 lib/vendor/doctrine/instantiator/docs/en/sidebar.rst create mode 100644 lib/vendor/doctrine/instantiator/phpbench.json create mode 100644 lib/vendor/doctrine/instantiator/phpcs.xml.dist create mode 100644 lib/vendor/doctrine/instantiator/phpstan.neon.dist create mode 100644 lib/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php create mode 100644 lib/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/InvalidArgumentException.php create mode 100644 lib/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/UnexpectedValueException.php create mode 100644 lib/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Instantiator.php create mode 100644 lib/vendor/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.php create mode 100644 lib/vendor/lexpress/doctrine1/.gitattributes create mode 100644 lib/vendor/lexpress/doctrine1/.gitignore create mode 100644 lib/vendor/lexpress/doctrine1/.travis.yml create mode 100644 lib/vendor/lexpress/doctrine1/CHANGELOG.md create mode 100644 lib/vendor/lexpress/doctrine1/COPYRIGHT create mode 100644 lib/vendor/lexpress/doctrine1/LICENSE create mode 100644 lib/vendor/lexpress/doctrine1/UPGRADE_TO_1_2 create mode 100644 lib/vendor/lexpress/doctrine1/build.properties.dev create mode 100644 lib/vendor/lexpress/doctrine1/build.xml create mode 100644 lib/vendor/lexpress/doctrine1/composer.json rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Access.php (95%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Adapter/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Adapter/Interface.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Adapter/Mock.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Adapter/Oracle.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Adapter/Statement.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Adapter/Statement/Interface.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Adapter/Statement/Mock.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Adapter/Statement/Oracle.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/AuditLog.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/AuditLog/Listener.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/AuditLog/Listener/Microtime.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Builder.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Cache/Apc.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Cache/Array.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Cache/Db.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Cache/Driver.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Cache/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Cache/Interface.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Cache/Memcache.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Cache/Xcache.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Cli.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Cli/AnsiColorFormatter.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Cli/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Cli/Formatter.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Collection.php (91%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Collection/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Collection/Iterator.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Collection/Iterator/Expandable.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Collection/Iterator/Normal.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Collection/Iterator/Offset.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Collection/Offset.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Collection/OnDemand.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Column.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Compiler.php (96%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Compiler/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Configurable.php (97%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Connection.php (96%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Connection/Common.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Connection/Db2.php (93%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Connection/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Connection/Mock.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Connection/Module.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Mssql.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Connection/Mssql/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Connection/Mysql.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Connection/Mysql/Exception.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Oracle.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Connection/Oracle/Exception.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Pgsql.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Connection/Pgsql/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Connection/Profiler.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Connection/Profiler/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Connection/Sqlite.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Connection/Sqlite/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Connection/Statement.php (96%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/UnitOfWork.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Core.php (94%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Data.php (85%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Data/Exception.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Data/Export.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Data/Import.php (98%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/DataDict.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/DataDict/Exception.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict/Mssql.php create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict/Mysql.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/DataDict/Oracle.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict/Pgsql.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/DataDict/Sqlite.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Event.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/EventListener.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/EventListener/Chain.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/EventListener/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/EventListener/Interface.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Exception.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Export.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Export/Exception.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Mssql.php create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Mysql.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Export/Oracle.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Pgsql.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Export/Reporter.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Export/Schema.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Export/Sqlite.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Expression.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Expression/Driver.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Expression/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Expression/Mock.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression/Mssql.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Expression/Mysql.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Expression/Oracle.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression/Pgsql.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Expression/Sqlite.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/File.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/File/Index.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Formatter.php (98%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Hook.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Hook/Equal.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Hook/Integer.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Hook/Parser.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Hook/Parser/Complex.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Hook/WordLike.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Hydrator.php (86%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Hydrator/Abstract.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Hydrator/ArrayDriver.php (97%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Hydrator/ArrayHierarchyDriver.php (95%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Hydrator/ArrayShallowDriver.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Hydrator/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Hydrator/Graph.php (87%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Hydrator/NoneDriver.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Hydrator/RecordDriver.php (97%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Hydrator/RecordHierarchyDriver.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Hydrator/ScalarDriver.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Hydrator/SingleScalarDriver.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/I18n.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/I18n/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Import.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Import/Builder.php (82%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Import/Builder/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Import/Exception.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Import/Mssql.php create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Import/Mysql.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Import/Oracle.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Import/Pgsql.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Import/Schema.php (99%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Import/Sqlite.php (91%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Inflector.php (99%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/IntegrityMapper.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Lib.php (92%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Locator.php (95%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Locator/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Locator/Injectable.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Locking/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Locking/Manager/Pessimistic.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Manager.php (93%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Manager/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Migration.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Migration/Base.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Migration/Builder.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Migration/Diff.php (97%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Migration/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Migration/IrreversibleMigrationException.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Migration/Process.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Node.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Node/AdjacencyList.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Node/AdjacencyList/LevelOrderIterator.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Node/AdjacencyList/PostOrderIterator.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Node/AdjacencyList/PreOrderIterator.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Node/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Node/Interface.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Node/MaterializedPath.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Node/MaterializedPath/LevelOrderIterator.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Node/MaterializedPath/PostOrderIterator.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Node/MaterializedPath/PreOrderIterator.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Node/NestedSet.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Node/NestedSet/LevelOrderIterator.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Node/NestedSet/PostOrderIterator.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Node/NestedSet/PreOrderIterator.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Null.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Overloadable.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Pager.php (99%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Pager/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Pager/Layout.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Pager/Range.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Pager/Range/Jumping.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Pager/Range/Sliding.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Parser.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Parser/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Parser/Json.php (96%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Parser/Serialize.php (92%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Parser/Xml.php (95%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Parser/Yml.php (96%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Parser/sfYaml/sfYaml.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Parser/sfYaml/sfYamlDumper.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Parser/sfYaml/sfYamlInline.php create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Parser/sfYaml/sfYamlParser.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query.php (95%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Query/Abstract.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Check.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Condition.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Filter.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Filter/Chain.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Filter/Interface.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Forupdate.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/From.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Groupby.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Having.php (88%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/JoinCondition.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Limit.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Offset.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Orderby.php (91%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Parser.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Part.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Registry.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Registry/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Select.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Set.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Query/Tokenizer.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Tokenizer/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Query/Where.php (82%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/RawSql.php (99%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/RawSql/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Record.php (97%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Record/Abstract.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Record/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Record/Filter.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Record/Filter/Compound.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Record/Filter/Standard.php (99%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Record/Generator.php (98%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Record/Iterator.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Record/Listener.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Record/Listener/Chain.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Record/Listener/Interface.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Record/State/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Record/UnknownPropertyException.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Relation.php (99%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Relation/Association.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Relation/Association/Self.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Relation/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Relation/ForeignKey.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Relation/LocalKey.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Relation/Nest.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Relation/Parser.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Relation/Parser/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Search.php (97%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Search/Analyzer.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Search/Analyzer/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Search/Analyzer/Interface.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Search/Analyzer/Standard.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Search/Analyzer/Utf8.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Search/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Search/File.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Search/Indexer.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Search/Indexer/Dir.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Search/Indexer/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Search/Listener.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Search/Parser.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Search/Query.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Search/Record.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Sequence.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Sequence/Db2.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Sequence/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Sequence/Mssql.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Sequence/Mysql.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Sequence/Oracle.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Sequence/Pgsql.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Sequence/Sqlite.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Table.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Table/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Table/Repository.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Table/Repository/Exception.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Table/Repository/None.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/BuildAll.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/BuildAllLoad.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/BuildAllReload.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/Compile.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/CreateDb.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/CreateTables.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/Dql.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/DropDb.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/DumpData.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/GenerateMigration.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/GenerateMigrationsDb.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/GenerateMigrationsDiff.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/GenerateMigrationsModels.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/GenerateModelsDb.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/GenerateModelsYaml.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/GenerateSql.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/GenerateYamlDb.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/GenerateYamlModels.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/LoadData.php (89%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/Migrate.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Task/RebuildDb.php (77%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Template.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Template/Geographical.php (98%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Template/I18n.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Template/Listener/Sluggable.php (99%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Template/Listener/SoftDelete.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Template/Listener/Timestampable.php (95%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Template/NestedSet.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Template/Searchable.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Template/Sluggable.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Template/SoftDelete.php (98%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Template/Timestampable.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Template/Versionable.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Transaction.php (99%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Transaction/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Transaction/Mock.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Transaction/Mssql.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Transaction/Mysql.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Transaction/Oracle.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Transaction/Pgsql.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Transaction/Sqlite.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Tree.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Tree/AdjacencyList.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Tree/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Tree/Interface.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Tree/MaterializedPath.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Tree/NestedSet.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Util.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Validator.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Country.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Creditcard.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Date.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Driver.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Email.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/ErrorStack.php (95%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Exception.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Future.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/lib/Doctrine/Validator/HtmlColor.php rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Htmlcolor.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Ip.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Minlength.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Nospace.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Notblank.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Notnull.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Past.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Range.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Readonly.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Regexp.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Time.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Timestamp.php (85%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Unique.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Unsigned.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/Validator/Usstate.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/View.php (100%) rename lib/vendor/{symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine => lexpress/doctrine1/lib}/Doctrine/View/Exception.php (100%) create mode 100644 lib/vendor/lexpress/doctrine1/package.xml rename lib/vendor/{symfony/lib/plugins/sfPropelPlugin/config/skeleton/config/schema.yml => lexpress/doctrine1/tests/CliTestCase/CustomDoctrineStyleTask.php} (100%) rename lib/vendor/{symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/skeleton/templates/.sf => lexpress/doctrine1/tests/CliTestCase/TaskDeclaredInAnIncFile.inc.php} (100%) create mode 100644 lib/vendor/lexpress/doctrine1/tests/CliTestCase/TestTask02.php rename lib/vendor/{symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_form_footer.php => lexpress/doctrine1/tests/CliTestCase/baz.php} (100%) rename lib/vendor/{symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_form_header.php => lexpress/doctrine1/tests/CliTestCase/bip.php} (100%) create mode 100644 lib/vendor/lexpress/doctrine1/tests/CliTestCase/cli-default.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/CliTestCase/cli-with-custom-tasks.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/CliTestCase/cli-without-autoregistered-custom-tasks.php rename lib/vendor/{symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_list_footer.php => lexpress/doctrine1/tests/CliTestCase/doctrine.php} (100%) rename lib/vendor/{symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_list_header.php => lexpress/doctrine1/tests/CliTestCase/foo.php} (100%) create mode 100644 lib/vendor/lexpress/doctrine1/tests/CliTestCase/testLoadtasksLoadsDoctrineStyleTasksFromTheSpecifiedDirectory/DoctrineStyleTask.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/CliTestCase/testLoadtasksLoadsDoctrineStyleTasksFromTheSpecifiedDirectory/EmptyFile.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/CliTestCase/testLoadtasksLoadsDoctrineStyleTasksFromTheSpecifiedDirectory/InvalidClassNameForATask.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/CliTestCase/testLoadtasksLoadsDoctrineStyleTasksFromTheSpecifiedDirectory/TaskDeclaredInAnIncFile.inc.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/CliTestCase/testLoadtasksLoadsDoctrineStyleTasksFromTheSpecifiedDirectory/should-be-ignored.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/Connection/UnitOfWork.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/DoctrineTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/DoctrineTest/Coverage.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/DoctrineTest/GroupTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/DoctrineTest/Reporter.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/DoctrineTest/Reporter/Cli.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/DoctrineTest/Reporter/Html.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/Extension/TestExtension/lib/Doctrine/Template/TestBehavior.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/Extension/TestExtension/lib/Doctrine/Test.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/Migration/Diff/schema/from.yml create mode 100644 lib/vendor/lexpress/doctrine1/tests/Migration/Diff/schema/to.yml create mode 100644 lib/vendor/lexpress/doctrine1/tests/ModelLoadingTest/Aggressive/Models.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/ModelLoadingTest/Aggressive/MoreModels.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/ModelLoadingTest/Conservative/BaseConservativeModelLoadingUser.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/ModelLoadingTest/Conservative/ConservativeModelLoadingContact.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/ModelLoadingTest/Conservative/ConservativeModelLoadingProfile.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/ModelLoadingTest/Conservative/ConservativeModelLoadingUser.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/Search/_files/content.html create mode 100644 lib/vendor/lexpress/doctrine1/tests/Search/_files/content.txt create mode 100644 lib/vendor/lexpress/doctrine1/tests/TaskTestCase/TestTask004.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/TaskTestCase/TestTask005.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/TaskTestCase/TestTask006.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/Ticket/1617_schema.yml create mode 100644 lib/vendor/lexpress/doctrine1/tests/Ticket/1727/models1/Ticket_1727_Model1.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/Ticket/1727/models1/Ticket_1727_Model2.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/Ticket/1727/models2/Ticket_1727_Model3.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/Ticket/1727/models2/Ticket_1727_Model4.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/Ticket/2375/models1/Ticket_2375_Model1.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/Ticket/2375/models1/Ticket_2375_Model2.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/Ticket/2375/models2/Ticket_2375_Model3.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/Ticket/2375/models2/Ticket_2375_Model4.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/Ticket/2375/models2/Ticket_2375_Model5.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/Ticket/DC221/TestMigration.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/Ticket/DC292/from.yml create mode 100644 lib/vendor/lexpress/doctrine1/tests/Ticket/DC292/to.yml create mode 100644 lib/vendor/lexpress/doctrine1/tests/Ticket/DC95/schema.yml create mode 100644 lib/vendor/lexpress/doctrine1/tests/bootstrap.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/index.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/migration_classes/10_test.class.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/migration_classes/11_test.class.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/migration_classes/1_add_phonenumber.class.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/migration_classes/2_add_user.class.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/migration_classes/3_add_profile.class.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/migration_classes/4_drop_profile.class.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/migration_classes/5_test.class.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/migration_classes/6_test.class.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/migration_classes/7_test.class.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/migration_classes/8_test.class.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/migration_classes/9_test.class.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Account.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Address.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Album.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/App.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/App_Category.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/App_User.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Assignment.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Auth.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Author.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/BadlyNamed__Class.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/BarRecord.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/BaseSymfonyRecord.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Blog.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/BlogTag.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/BoardWithPosition.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Book.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Bookmark.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/BookmarkUser.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/BooleanTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/CPK_Association.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/CPK_Test.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/CPK_Test2.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/CascadeDeleteRelatedTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/CascadeDeleteRelatedTest2.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/CascadeDeleteTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/CategoryWithPosition.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/CheckConstraintTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ClientModel.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ColumnAliasTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ConcreteEmail.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ConcreteGroup.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ConcreteGroupUser.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ConcreteInheritanceTestParent.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ConcreteUser.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/CoverageCodeN.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/CustomPK.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/CustomSequenceRecord.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Data_File.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/DateTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Description.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Element.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Email.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Entity.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/EntityAddress.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/EntityReference.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/EnumTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/EnumTest2.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/EnumTest3.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/EventListenerChainTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/EventListenerTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/FieldNameTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/File_Owner.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/FilterTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/FilterTest2.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/FooBarRecord.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/FooForeignlyOwned.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/FooForeignlyOwnedWithPK.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/FooLocallyOwned.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/FooRecord.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/FooReferenceRecord.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ForeignKeyTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ForeignKeyTest2.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Forum_Board.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Forum_Category.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Forum_Entry.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Forum_Thread.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Group.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/GroupUser.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/GzipTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/I18nRelationTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/I18nTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/InheritanceDeal.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/InheritanceDealUser.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/InheritanceUser.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/JC1.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/JC2.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/JC3.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/LiabilityCodeN.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Location.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/LocationI18n.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Log_Entry.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Log_Status.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/M2MTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/M2MTest2.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/MigrationTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/MyGroup.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/MyOneThing.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/MyOtherThing.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/MyUser.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/MyUser2.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/MyUserGroup.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/MyUserOneThing.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/MyUserOtherThing.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/MysqlGroup.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/MysqlGroupMember.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/MysqlIndexTestRecord.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/MysqlTestRecord.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/MysqlUser.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/NestReference.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/NestTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/NestedSetTest_SingleRootNode.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/NestedSet_MultiRootNode.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/NestedSet_Timestampable_MultiRootNode.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/NotNullTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ORM_AccessControl.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ORM_AccessControlsGroups.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ORM_AccessGroup.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ORM_TestEntry.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ORM_TestItem.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Package.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/PackageVersion.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/PackageVersionNotes.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Page.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Phonenumber.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Photo.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Phototag.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/PluginSymfonyRecord.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/PluginSymfonyRecordTable.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Policy.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/PolicyAsset.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/PolicyCodeN.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/PolicyN.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/QueryTest_Board.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/QueryTest_Category.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/QueryTest_Entry.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/QueryTest_Item.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/QueryTest_Rank.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/QueryTest_Subscription.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/QueryTest_User.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/QueryTest_UserRank.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/RTC1.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/RTC2.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/RTC3.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/RTC4.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/RateN.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Rec1.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Rec2.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/RecordFilterTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/RecordHookTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Record_City.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Record_Country.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Record_District.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/RelationTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Resource.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ResourceReference.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ResourceType.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Role.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/SearchTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/SelfRefTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/SequenceRecord.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/SerializeTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/SoftDeleteBCTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/SoftDeleteTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Song.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/SymfonyRecord.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/SymfonyRecordTable.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Tag.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/Task.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/TestError.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/TestMovie.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/TestMovieUserBookmark.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/TestMovieUserVote.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/TestRecord.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/TestUser.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/TreeLeaf.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/UnderscoreColumn.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/User.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ValidatorTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ValidatorTest_AddressModel.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ValidatorTest_ClientModel.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ValidatorTest_ClientToAddressModel.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ValidatorTest_DateModel.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ValidatorTest_FootballPlayer.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ValidatorTest_Person.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/VersioningTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/ZeroValueTest.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/export/Cms_Category.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/export/Cms_CategoryLanguages.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/gnatEmail.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/gnatUser.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/mmrGroupUser_B.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/mmrGroupUser_C.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/mmrGroup_B.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/mmrGroup_C.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/mmrUser_B.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/models/mmrUser_C.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/mysql_migration_classes/001_mysql_add_table.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/mysql_migration_classes/002_mysql_change_column.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/run.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/schema.xml create mode 100644 lib/vendor/lexpress/doctrine1/tests/schema.yml create mode 100644 lib/vendor/lexpress/doctrine1/tests/template.tpl create mode 100644 lib/vendor/lexpress/doctrine1/tests/tmp/Ticket_1527_User.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/tmp/generated/BaseTicket_1527_User.php create mode 100644 lib/vendor/lexpress/doctrine1/tests/unsolved.php create mode 100644 lib/vendor/lexpress/doctrine1/tools/sandbox/config.php create mode 100644 lib/vendor/lexpress/doctrine1/tools/sandbox/doctrine create mode 100644 lib/vendor/lexpress/doctrine1/tools/sandbox/doctrine.php create mode 100644 lib/vendor/lexpress/doctrine1/tools/sandbox/index.php create mode 100644 lib/vendor/oomphinc/composer-installers-extender/README.md create mode 100644 lib/vendor/oomphinc/composer-installers-extender/composer.json create mode 100644 lib/vendor/oomphinc/composer-installers-extender/src/Installer.php create mode 100644 lib/vendor/oomphinc/composer-installers-extender/src/InstallerHelper.php create mode 100644 lib/vendor/oomphinc/composer-installers-extender/src/Plugin.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/.gitattributes create mode 100644 lib/vendor/swiftmailer/swiftmailer/.github/ISSUE_TEMPLATE.md create mode 100644 lib/vendor/swiftmailer/swiftmailer/.github/PULL_REQUEST_TEMPLATE.md create mode 100644 lib/vendor/swiftmailer/swiftmailer/.gitignore create mode 100644 lib/vendor/swiftmailer/swiftmailer/.php_cs.dist create mode 100644 lib/vendor/swiftmailer/swiftmailer/.travis.yml create mode 100644 lib/vendor/swiftmailer/swiftmailer/CHANGES create mode 100644 lib/vendor/swiftmailer/swiftmailer/LICENSE create mode 100644 lib/vendor/swiftmailer/swiftmailer/README create mode 100644 lib/vendor/swiftmailer/swiftmailer/VERSION create mode 100644 lib/vendor/swiftmailer/swiftmailer/composer.json create mode 100644 lib/vendor/swiftmailer/swiftmailer/doc/headers.rst create mode 100644 lib/vendor/swiftmailer/swiftmailer/doc/help-resources.rst create mode 100644 lib/vendor/swiftmailer/swiftmailer/doc/including-the-files.rst create mode 100644 lib/vendor/swiftmailer/swiftmailer/doc/index.rst create mode 100644 lib/vendor/swiftmailer/swiftmailer/doc/installing.rst create mode 100644 lib/vendor/swiftmailer/swiftmailer/doc/introduction.rst create mode 100644 lib/vendor/swiftmailer/swiftmailer/doc/japanese.rst create mode 100644 lib/vendor/swiftmailer/swiftmailer/doc/messages.rst create mode 100644 lib/vendor/swiftmailer/swiftmailer/doc/overview.rst create mode 100644 lib/vendor/swiftmailer/swiftmailer/doc/plugins.rst create mode 100644 lib/vendor/swiftmailer/swiftmailer/doc/sending.rst create mode 100644 lib/vendor/swiftmailer/swiftmailer/doc/uml/Encoders.graffle create mode 100644 lib/vendor/swiftmailer/swiftmailer/doc/uml/Mime.graffle create mode 100644 lib/vendor/swiftmailer/swiftmailer/doc/uml/Transports.graffle create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Attachment.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/AbstractFilterableInputStream.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/ArrayByteStream.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/FileByteStream.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ByteStream/TemporaryFileByteStream.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader/GenericFixedWidthReader.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader/UsAsciiReader.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReader/Utf8Reader.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReaderFactory.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterReaderFactory/SimpleCharacterReaderFactory.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterStream.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterStream/ArrayCharacterStream.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/CharacterStream/NgCharacterStream.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ConfigurableSpool.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/DependencyContainer.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/DependencyException.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/EmbeddedFile.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Encoder.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Encoder/Base64Encoder.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Encoder/QpEncoder.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Encoder/Rfc2231Encoder.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Encoding.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/CommandEvent.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/CommandListener.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/Event.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/EventDispatcher.php rename lib/vendor/{symfony/lib/vendor/swiftmailer => swiftmailer/swiftmailer/lib}/classes/Swift/Events/EventListener.php (88%) create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/EventObject.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/ResponseEvent.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/ResponseListener.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/SendEvent.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/SendListener.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/SimpleEventDispatcher.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportChangeEvent.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportChangeListener.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportExceptionEvent.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/TransportExceptionListener.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/FailoverTransport.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/FileSpool.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/FileStream.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Filterable.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Image.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/InputByteStream.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/IoException.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/ArrayKeyCache.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/DiskKeyCache.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/KeyCacheInputStream.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/NullKeyCache.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/KeyCache/SimpleKeyCacheInputStream.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/LoadBalancedTransport.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/MailTransport.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mailer.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mailer/ArrayRecipientIterator.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mailer/RecipientIterator.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/MemorySpool.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Message.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Attachment.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/CharsetObserver.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/Base64ContentEncoder.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/NativeQpContentEncoder.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/PlainContentEncoder.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/QpContentEncoder.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/QpContentEncoderProxy.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/RawContentEncoder.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/EmbeddedFile.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/EncodingObserver.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Grammar.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Header.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder/Base64HeaderEncoder.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder/QpHeaderEncoder.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/HeaderFactory.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/HeaderSet.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/AbstractHeader.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/DateHeader.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/IdentificationHeader.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/MailboxHeader.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/OpenDKIMHeader.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/ParameterizedHeader.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/PathHeader.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/UnstructuredHeader.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Message.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/MimeEntity.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/MimePart.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/ParameterizedHeader.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleHeaderFactory.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleHeaderSet.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleMessage.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/SimpleMimeEntity.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/MimePart.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/NullTransport.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/OutputByteStream.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/AntiFloodPlugin.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/BandwidthMonitorPlugin.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Decorator/Replacements.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/DecoratorPlugin.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/ImpersonatePlugin.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Logger.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/LoggerPlugin.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Loggers/ArrayLogger.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Loggers/EchoLogger.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/MessageLogger.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Pop/Pop3Connection.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Pop/Pop3Exception.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/PopBeforeSmtpPlugin.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/RedirectingPlugin.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Reporter.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/ReporterPlugin.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Reporters/HitReporter.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Reporters/HtmlReporter.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Sleeper.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/ThrottlerPlugin.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Timer.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Preferences.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/ReplacementFilterFactory.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/RfcComplianceException.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/SendmailTransport.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/SignedMessage.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signer.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/BodySigner.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/DKIMSigner.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/DomainKeySigner.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/HeaderSigner.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/OpenDKIMSigner.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Signers/SMimeSigner.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/SmtpTransport.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Spool.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/SpoolTransport.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilter.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilters/ByteArrayReplacementFilter.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilters/StringReplacementFilter.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/StreamFilters/StringReplacementFilterFactory.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/SwiftException.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/AbstractSmtpTransport.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/CramMd5Authenticator.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/LoginAuthenticator.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/NTLMAuthenticator.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/PlainAuthenticator.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/XOAuth2Authenticator.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/AuthHandler.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/Esmtp/Authenticator.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/EsmtpHandler.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/EsmtpTransport.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/FailoverTransport.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/IoBuffer.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/LoadBalancedTransport.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/MailInvoker.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/MailTransport.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/NullTransport.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/SendmailTransport.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/SimpleMailInvoker.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/SmtpAgent.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/SpoolTransport.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Transport/StreamBuffer.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/TransportException.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Validate.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/dependency_maps/cache_deps.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/dependency_maps/message_deps.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/dependency_maps/mime_deps.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/dependency_maps/transport_deps.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/mime_types.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/preferences.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/swift_init.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/swift_required.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/swift_required_pear.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/lib/swiftmailer_generate_mimes_config.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/phpunit.xml.dist create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/IdenticalBinaryConstraint.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/StreamCollector.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/SwiftMailerSmokeTestCase.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/SwiftMailerTestCase.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/iso-2022-jp/one.txt create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/iso-8859-1/one.txt create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/utf-8/one.txt create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/utf-8/three.txt create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/charsets/utf-8/two.txt create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/dkim/dkim.test.priv create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/dkim/dkim.test.pub create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/files/data.txt create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/files/swiftmailer.png create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/files/textfile.zip create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/ca.crt create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/ca.key create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/create-cert.sh create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/encrypt.crt create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/encrypt.key create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/encrypt2.crt create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/encrypt2.key create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/intermediate.crt create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/intermediate.key create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/sign.crt create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/sign.key create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/sign2.crt create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/_samples/smime/sign2.key create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance.conf.php.default create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/AttachmentAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/ByteStream/FileByteStreamAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/CharacterReaderFactory/SimpleCharacterReaderFactoryAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/DependencyContainerAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/EmbeddedFileAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/Base64EncoderAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/QpEncoderAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Encoder/Rfc2231EncoderAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/EncodingAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/KeyCache/ArrayKeyCacheAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/KeyCache/DiskKeyCacheAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/MessageAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/AttachmentAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/Base64ContentEncoderAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/NativeQpContentEncoderAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/PlainContentEncoderAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/QpContentEncoderAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/EmbeddedFileAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/HeaderEncoder/Base64HeaderEncoderAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/MimePartAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Mime/SimpleMessageAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/MimePartAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/AbstractStreamBufferAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/BasicSocketAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/ProcessAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/SocketTimeoutTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/SslSocketAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/TlsSocketAcceptanceTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/bootstrap.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug111Test.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug118Test.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug206Test.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug274Test.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug34Test.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug35Test.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug38Test.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug518Test.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug51Test.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug534Test.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug650Test.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug71Test.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug76Test.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/bug/Swift/BugFileByteStreamConsecutiveReadCallsTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/fixtures/MimeEntityFixture.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/smoke.conf.php.default create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/AttachmentSmokeTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/BasicSmokeTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/HtmlWithAttachmentSmokeTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/smoke/Swift/Smoke/InternationalSmokeTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/ByteStream/ArrayByteStreamTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/CharacterReader/GenericFixedWidthReaderTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/CharacterReader/UsAsciiReaderTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/CharacterReader/Utf8ReaderTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/CharacterStream/ArrayCharacterStreamTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/DependencyContainerTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Encoder/Base64EncoderTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Encoder/QpEncoderTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Encoder/Rfc2231EncoderTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/CommandEventTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/EventObjectTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/ResponseEventTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/SendEventTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/SimpleEventDispatcherTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/TransportChangeEventTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Events/TransportExceptionEventTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/KeyCache/ArrayKeyCacheTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/KeyCache/SimpleKeyCacheInputStreamTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mailer/ArrayRecipientIteratorTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/MailerTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/MessageTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/AbstractMimeEntityTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/AttachmentTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/ContentEncoder/Base64ContentEncoderTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/ContentEncoder/PlainContentEncoderTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/ContentEncoder/QpContentEncoderTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/EmbeddedFileTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/HeaderEncoder/Base64HeaderEncoderTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/HeaderEncoder/QpHeaderEncoderTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/DateHeaderTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/IdentificationHeaderTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/MailboxHeaderTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/ParameterizedHeaderTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/PathHeaderTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/Headers/UnstructuredHeaderTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/MimePartTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/SimpleHeaderFactoryTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/SimpleHeaderSetTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/SimpleMessageTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/SimpleMimeEntityTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/AntiFloodPluginTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/BandwidthMonitorPluginTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/DecoratorPluginTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/LoggerPluginTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/Loggers/ArrayLoggerTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/Loggers/EchoLoggerTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/PopBeforeSmtpPluginTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/RedirectingPluginTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/ReporterPluginTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/Reporters/HitReporterTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/Reporters/HtmlReporterTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Plugins/ThrottlerPluginTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/DKIMSignerTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/OpenDKIMSignerTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Signers/SMimeSignerTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/StreamFilters/ByteArrayReplacementFilterTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/StreamFilters/StringReplacementFilterFactoryTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/StreamFilters/StringReplacementFilterTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/AbstractSmtpEventSupportTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/AbstractSmtpTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/CramMd5AuthenticatorTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/LoginAuthenticatorTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/NTLMAuthenticatorTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/PlainAuthenticatorTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/Esmtp/AuthHandlerTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/EsmtpTransport/ExtensionSupportTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/EsmtpTransportTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/FailoverTransportTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/LoadBalancedTransportTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/MailTransportTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/SendmailTransportTest.php create mode 100644 lib/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Transport/StreamBufferTest.php create mode 100644 lib/vendor/symfony/.editorconfig create mode 100644 lib/vendor/symfony/.gitignore create mode 100644 lib/vendor/symfony/.gitmodules create mode 100644 lib/vendor/symfony/.travis.yml create mode 100644 lib/vendor/symfony/CHANGELOG.md create mode 100644 lib/vendor/symfony/COPYRIGHT.md create mode 100644 lib/vendor/symfony/LICENSE.md create mode 100644 lib/vendor/symfony/README.md create mode 100644 lib/vendor/symfony/UPGRADE.md create mode 100644 lib/vendor/symfony/WHATS_NEW.md create mode 100644 lib/vendor/symfony/autoload.php create mode 100644 lib/vendor/symfony/browser-kit/.gitignore create mode 100644 lib/vendor/symfony/browser-kit/CHANGELOG.md create mode 100644 lib/vendor/symfony/browser-kit/Client.php create mode 100644 lib/vendor/symfony/browser-kit/Cookie.php create mode 100644 lib/vendor/symfony/browser-kit/CookieJar.php create mode 100644 lib/vendor/symfony/browser-kit/Exception/BadMethodCallException.php create mode 100644 lib/vendor/symfony/browser-kit/History.php create mode 100644 lib/vendor/symfony/browser-kit/LICENSE create mode 100644 lib/vendor/symfony/browser-kit/README.md create mode 100644 lib/vendor/symfony/browser-kit/Request.php create mode 100644 lib/vendor/symfony/browser-kit/Response.php create mode 100644 lib/vendor/symfony/browser-kit/Tests/ClientTest.php create mode 100644 lib/vendor/symfony/browser-kit/Tests/CookieJarTest.php create mode 100644 lib/vendor/symfony/browser-kit/Tests/CookieTest.php create mode 100644 lib/vendor/symfony/browser-kit/Tests/HistoryTest.php create mode 100644 lib/vendor/symfony/browser-kit/Tests/RequestTest.php create mode 100644 lib/vendor/symfony/browser-kit/Tests/ResponseTest.php create mode 100644 lib/vendor/symfony/browser-kit/composer.json create mode 100644 lib/vendor/symfony/browser-kit/phpunit.xml.dist create mode 100644 lib/vendor/symfony/composer.json create mode 100644 lib/vendor/symfony/console/.gitignore create mode 100644 lib/vendor/symfony/console/Application.php create mode 100644 lib/vendor/symfony/console/CHANGELOG.md create mode 100644 lib/vendor/symfony/console/Command/Command.php create mode 100644 lib/vendor/symfony/console/Command/HelpCommand.php create mode 100644 lib/vendor/symfony/console/Command/ListCommand.php create mode 100644 lib/vendor/symfony/console/Command/LockableTrait.php create mode 100644 lib/vendor/symfony/console/CommandLoader/CommandLoaderInterface.php create mode 100644 lib/vendor/symfony/console/CommandLoader/ContainerCommandLoader.php create mode 100644 lib/vendor/symfony/console/CommandLoader/FactoryCommandLoader.php create mode 100644 lib/vendor/symfony/console/ConsoleEvents.php create mode 100644 lib/vendor/symfony/console/DependencyInjection/AddConsoleCommandPass.php create mode 100644 lib/vendor/symfony/console/Descriptor/ApplicationDescription.php create mode 100644 lib/vendor/symfony/console/Descriptor/Descriptor.php create mode 100644 lib/vendor/symfony/console/Descriptor/DescriptorInterface.php create mode 100644 lib/vendor/symfony/console/Descriptor/JsonDescriptor.php create mode 100644 lib/vendor/symfony/console/Descriptor/MarkdownDescriptor.php create mode 100644 lib/vendor/symfony/console/Descriptor/TextDescriptor.php create mode 100644 lib/vendor/symfony/console/Descriptor/XmlDescriptor.php create mode 100644 lib/vendor/symfony/console/Event/ConsoleCommandEvent.php create mode 100644 lib/vendor/symfony/console/Event/ConsoleErrorEvent.php create mode 100644 lib/vendor/symfony/console/Event/ConsoleEvent.php create mode 100644 lib/vendor/symfony/console/Event/ConsoleTerminateEvent.php create mode 100644 lib/vendor/symfony/console/EventListener/ErrorListener.php create mode 100644 lib/vendor/symfony/console/Exception/CommandNotFoundException.php create mode 100644 lib/vendor/symfony/console/Exception/ExceptionInterface.php create mode 100644 lib/vendor/symfony/console/Exception/InvalidArgumentException.php create mode 100644 lib/vendor/symfony/console/Exception/InvalidOptionException.php create mode 100644 lib/vendor/symfony/console/Exception/LogicException.php create mode 100644 lib/vendor/symfony/console/Exception/NamespaceNotFoundException.php create mode 100644 lib/vendor/symfony/console/Exception/RuntimeException.php create mode 100644 lib/vendor/symfony/console/Formatter/OutputFormatter.php create mode 100644 lib/vendor/symfony/console/Formatter/OutputFormatterInterface.php create mode 100644 lib/vendor/symfony/console/Formatter/OutputFormatterStyle.php create mode 100644 lib/vendor/symfony/console/Formatter/OutputFormatterStyleInterface.php create mode 100644 lib/vendor/symfony/console/Formatter/OutputFormatterStyleStack.php create mode 100644 lib/vendor/symfony/console/Formatter/WrappableOutputFormatterInterface.php create mode 100644 lib/vendor/symfony/console/Helper/DebugFormatterHelper.php create mode 100644 lib/vendor/symfony/console/Helper/DescriptorHelper.php create mode 100644 lib/vendor/symfony/console/Helper/FormatterHelper.php create mode 100644 lib/vendor/symfony/console/Helper/Helper.php create mode 100644 lib/vendor/symfony/console/Helper/HelperInterface.php create mode 100644 lib/vendor/symfony/console/Helper/HelperSet.php create mode 100644 lib/vendor/symfony/console/Helper/InputAwareHelper.php create mode 100644 lib/vendor/symfony/console/Helper/ProcessHelper.php create mode 100644 lib/vendor/symfony/console/Helper/ProgressBar.php create mode 100644 lib/vendor/symfony/console/Helper/ProgressIndicator.php create mode 100644 lib/vendor/symfony/console/Helper/QuestionHelper.php create mode 100644 lib/vendor/symfony/console/Helper/SymfonyQuestionHelper.php create mode 100644 lib/vendor/symfony/console/Helper/Table.php create mode 100644 lib/vendor/symfony/console/Helper/TableCell.php create mode 100644 lib/vendor/symfony/console/Helper/TableRows.php create mode 100644 lib/vendor/symfony/console/Helper/TableSeparator.php create mode 100644 lib/vendor/symfony/console/Helper/TableStyle.php create mode 100644 lib/vendor/symfony/console/Input/ArgvInput.php create mode 100644 lib/vendor/symfony/console/Input/ArrayInput.php create mode 100644 lib/vendor/symfony/console/Input/Input.php create mode 100644 lib/vendor/symfony/console/Input/InputArgument.php create mode 100644 lib/vendor/symfony/console/Input/InputAwareInterface.php create mode 100644 lib/vendor/symfony/console/Input/InputDefinition.php create mode 100644 lib/vendor/symfony/console/Input/InputInterface.php create mode 100644 lib/vendor/symfony/console/Input/InputOption.php create mode 100644 lib/vendor/symfony/console/Input/StreamableInputInterface.php create mode 100644 lib/vendor/symfony/console/Input/StringInput.php create mode 100644 lib/vendor/symfony/console/LICENSE create mode 100644 lib/vendor/symfony/console/Logger/ConsoleLogger.php create mode 100644 lib/vendor/symfony/console/Output/BufferedOutput.php create mode 100644 lib/vendor/symfony/console/Output/ConsoleOutput.php create mode 100644 lib/vendor/symfony/console/Output/ConsoleOutputInterface.php create mode 100644 lib/vendor/symfony/console/Output/ConsoleSectionOutput.php create mode 100644 lib/vendor/symfony/console/Output/NullOutput.php create mode 100644 lib/vendor/symfony/console/Output/Output.php create mode 100644 lib/vendor/symfony/console/Output/OutputInterface.php create mode 100644 lib/vendor/symfony/console/Output/StreamOutput.php create mode 100644 lib/vendor/symfony/console/Question/ChoiceQuestion.php create mode 100644 lib/vendor/symfony/console/Question/ConfirmationQuestion.php create mode 100644 lib/vendor/symfony/console/Question/Question.php create mode 100644 lib/vendor/symfony/console/README.md create mode 100644 lib/vendor/symfony/console/Resources/bin/hiddeninput.exe create mode 100644 lib/vendor/symfony/console/Style/OutputStyle.php create mode 100644 lib/vendor/symfony/console/Style/StyleInterface.php create mode 100644 lib/vendor/symfony/console/Style/SymfonyStyle.php create mode 100644 lib/vendor/symfony/console/Terminal.php create mode 100644 lib/vendor/symfony/console/Tester/ApplicationTester.php create mode 100644 lib/vendor/symfony/console/Tester/CommandTester.php create mode 100644 lib/vendor/symfony/console/Tester/TesterTrait.php create mode 100644 lib/vendor/symfony/console/Tests/ApplicationTest.php create mode 100644 lib/vendor/symfony/console/Tests/Command/CommandTest.php create mode 100644 lib/vendor/symfony/console/Tests/Command/HelpCommandTest.php create mode 100644 lib/vendor/symfony/console/Tests/Command/ListCommandTest.php create mode 100644 lib/vendor/symfony/console/Tests/Command/LockableTraitTest.php create mode 100644 lib/vendor/symfony/console/Tests/CommandLoader/ContainerCommandLoaderTest.php create mode 100644 lib/vendor/symfony/console/Tests/CommandLoader/FactoryCommandLoaderTest.php create mode 100644 lib/vendor/symfony/console/Tests/DependencyInjection/AddConsoleCommandPassTest.php create mode 100644 lib/vendor/symfony/console/Tests/Descriptor/AbstractDescriptorTest.php create mode 100644 lib/vendor/symfony/console/Tests/Descriptor/JsonDescriptorTest.php create mode 100644 lib/vendor/symfony/console/Tests/Descriptor/MarkdownDescriptorTest.php create mode 100644 lib/vendor/symfony/console/Tests/Descriptor/ObjectsProvider.php create mode 100644 lib/vendor/symfony/console/Tests/Descriptor/TextDescriptorTest.php create mode 100644 lib/vendor/symfony/console/Tests/Descriptor/XmlDescriptorTest.php create mode 100644 lib/vendor/symfony/console/Tests/EventListener/ErrorListenerTest.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/DescriptorApplication1.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/DescriptorApplication2.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/DescriptorApplicationMbString.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/DescriptorCommand1.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/DescriptorCommand2.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/DescriptorCommand3.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/DescriptorCommand4.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/DescriptorCommandMbString.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/DummyOutput.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Foo1Command.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Foo2Command.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Foo3Command.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Foo4Command.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Foo5Command.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Foo6Command.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/FooCommand.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/FooLock2Command.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/FooLockCommand.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/FooOptCommand.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/FooSameCaseLowercaseCommand.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/FooSameCaseUppercaseCommand.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced1Command.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/FooSubnamespaced2Command.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/FooWithoutAliasCommand.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/FoobarCommand.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_0.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_1.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_10.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_11.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_12.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_13.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_14.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_15.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_16.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_17.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_2.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_3.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_4_with_iterators.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_5.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_6.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_7.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_8.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/command_9.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/command/interactive_command_1.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/interactive_output_1.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_0.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_1.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_10.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_11.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_12.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_13.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_14.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_15.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_16.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_17.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_2.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_3.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_4.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_4_with_iterators.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_5.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_6.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_7.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_8.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_9.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/TestCommand.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/TestTiti.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/TestToto.php create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_1.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_1.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_1.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_1.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_2.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_2.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_2.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_2.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_filtered_namespace.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_gethelp.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_mbstring.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_mbstring.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_renderexception1.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_renderexception2.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_renderexception3.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_renderexception3decorated.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_renderexception4.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1decorated.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth2.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_renderexception_escapeslines.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_renderexception_linebreaks.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_run1.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_run2.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_run3.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/application_run4.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/command_1.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/command_1.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/command_1.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/command_1.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/command_2.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/command_2.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/command_2.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/command_2.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/command_mbstring.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/command_mbstring.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_1.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_1.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_1.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_1.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_2.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_2.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_2.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_2.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_3.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_3.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_3.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_3.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_4.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_4.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_4.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_4.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_definition_1.json rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/default/skeleton/templates/.sf => console/Tests/Fixtures/input_definition_1.md} (100%) rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/data/environment.migrated => console/Tests/Fixtures/input_definition_1.txt} (100%) create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_definition_1.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_definition_2.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_definition_2.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_definition_2.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_definition_2.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_definition_3.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_definition_3.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_definition_3.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_definition_3.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_definition_4.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_definition_4.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_definition_4.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_definition_4.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_1.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_1.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_1.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_1.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_2.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_2.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_2.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_2.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_3.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_3.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_3.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_3.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_4.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_4.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_4.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_4.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_5.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_5.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_5.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_5.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_6.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_6.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_6.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_6.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_with_style.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_with_style.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_with_style.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_with_style.xml create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.json create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.md create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.txt create mode 100644 lib/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.xml create mode 100644 lib/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleStackTest.php create mode 100644 lib/vendor/symfony/console/Tests/Formatter/OutputFormatterStyleTest.php create mode 100644 lib/vendor/symfony/console/Tests/Formatter/OutputFormatterTest.php create mode 100644 lib/vendor/symfony/console/Tests/Helper/AbstractQuestionHelperTest.php create mode 100644 lib/vendor/symfony/console/Tests/Helper/FormatterHelperTest.php create mode 100644 lib/vendor/symfony/console/Tests/Helper/HelperSetTest.php create mode 100644 lib/vendor/symfony/console/Tests/Helper/HelperTest.php create mode 100644 lib/vendor/symfony/console/Tests/Helper/ProcessHelperTest.php create mode 100644 lib/vendor/symfony/console/Tests/Helper/ProgressBarTest.php create mode 100644 lib/vendor/symfony/console/Tests/Helper/ProgressIndicatorTest.php create mode 100644 lib/vendor/symfony/console/Tests/Helper/QuestionHelperTest.php create mode 100644 lib/vendor/symfony/console/Tests/Helper/SymfonyQuestionHelperTest.php create mode 100644 lib/vendor/symfony/console/Tests/Helper/TableStyleTest.php create mode 100644 lib/vendor/symfony/console/Tests/Helper/TableTest.php create mode 100644 lib/vendor/symfony/console/Tests/Input/ArgvInputTest.php create mode 100644 lib/vendor/symfony/console/Tests/Input/ArrayInputTest.php create mode 100644 lib/vendor/symfony/console/Tests/Input/InputArgumentTest.php create mode 100644 lib/vendor/symfony/console/Tests/Input/InputDefinitionTest.php create mode 100644 lib/vendor/symfony/console/Tests/Input/InputOptionTest.php create mode 100644 lib/vendor/symfony/console/Tests/Input/InputTest.php create mode 100644 lib/vendor/symfony/console/Tests/Input/StringInputTest.php create mode 100644 lib/vendor/symfony/console/Tests/Logger/ConsoleLoggerTest.php create mode 100644 lib/vendor/symfony/console/Tests/Output/ConsoleOutputTest.php create mode 100644 lib/vendor/symfony/console/Tests/Output/ConsoleSectionOutputTest.php create mode 100644 lib/vendor/symfony/console/Tests/Output/NullOutputTest.php create mode 100644 lib/vendor/symfony/console/Tests/Output/OutputTest.php create mode 100644 lib/vendor/symfony/console/Tests/Output/StreamOutputTest.php create mode 100644 lib/vendor/symfony/console/Tests/Question/ConfirmationQuestionTest.php create mode 100644 lib/vendor/symfony/console/Tests/Style/SymfonyStyleTest.php create mode 100644 lib/vendor/symfony/console/Tests/TerminalTest.php create mode 100644 lib/vendor/symfony/console/Tests/Tester/ApplicationTesterTest.php create mode 100644 lib/vendor/symfony/console/Tests/Tester/CommandTesterTest.php create mode 100644 lib/vendor/symfony/console/composer.json create mode 100644 lib/vendor/symfony/console/phpunit.xml.dist create mode 100644 lib/vendor/symfony/contracts/.gitignore create mode 100644 lib/vendor/symfony/contracts/CHANGELOG.md create mode 100644 lib/vendor/symfony/contracts/Cache/CacheInterface.php create mode 100644 lib/vendor/symfony/contracts/Cache/CacheTrait.php create mode 100644 lib/vendor/symfony/contracts/Cache/CallbackInterface.php create mode 100644 lib/vendor/symfony/contracts/Cache/ItemInterface.php create mode 100644 lib/vendor/symfony/contracts/Cache/TagAwareCacheInterface.php create mode 100644 lib/vendor/symfony/contracts/EventDispatcher/Event.php create mode 100644 lib/vendor/symfony/contracts/EventDispatcher/EventDispatcherInterface.php create mode 100644 lib/vendor/symfony/contracts/HttpClient/ChunkInterface.php create mode 100644 lib/vendor/symfony/contracts/HttpClient/Exception/ClientExceptionInterface.php create mode 100644 lib/vendor/symfony/contracts/HttpClient/Exception/ExceptionInterface.php create mode 100644 lib/vendor/symfony/contracts/HttpClient/Exception/HttpExceptionInterface.php create mode 100644 lib/vendor/symfony/contracts/HttpClient/Exception/RedirectionExceptionInterface.php create mode 100644 lib/vendor/symfony/contracts/HttpClient/Exception/ServerExceptionInterface.php create mode 100644 lib/vendor/symfony/contracts/HttpClient/Exception/TransportExceptionInterface.php create mode 100644 lib/vendor/symfony/contracts/HttpClient/HttpClientInterface.php create mode 100644 lib/vendor/symfony/contracts/HttpClient/ResponseInterface.php create mode 100644 lib/vendor/symfony/contracts/HttpClient/ResponseStreamInterface.php create mode 100644 lib/vendor/symfony/contracts/HttpClient/Test/Fixtures/web/index.php create mode 100644 lib/vendor/symfony/contracts/HttpClient/Test/HttpClientTestCase.php create mode 100644 lib/vendor/symfony/contracts/HttpClient/Test/TestHttpServer.php create mode 100644 lib/vendor/symfony/contracts/LICENSE create mode 100644 lib/vendor/symfony/contracts/README.md create mode 100644 lib/vendor/symfony/contracts/Service/ResetInterface.php create mode 100644 lib/vendor/symfony/contracts/Service/ServiceLocatorTrait.php create mode 100644 lib/vendor/symfony/contracts/Service/ServiceProviderInterface.php create mode 100644 lib/vendor/symfony/contracts/Service/ServiceSubscriberInterface.php create mode 100644 lib/vendor/symfony/contracts/Service/ServiceSubscriberTrait.php create mode 100644 lib/vendor/symfony/contracts/Tests/Cache/CacheTraitTest.php create mode 100644 lib/vendor/symfony/contracts/Tests/Service/ServiceLocatorTest.php create mode 100644 lib/vendor/symfony/contracts/Tests/Service/ServiceSubscriberTraitTest.php create mode 100644 lib/vendor/symfony/contracts/Tests/Translation/TranslatorTest.php create mode 100644 lib/vendor/symfony/contracts/Translation/LocaleAwareInterface.php create mode 100644 lib/vendor/symfony/contracts/Translation/TranslatorInterface.php create mode 100644 lib/vendor/symfony/contracts/Translation/TranslatorTrait.php create mode 100644 lib/vendor/symfony/contracts/composer.json create mode 100644 lib/vendor/symfony/contracts/phpunit.xml.dist create mode 100644 lib/vendor/symfony/css-selector/.gitignore create mode 100644 lib/vendor/symfony/css-selector/CHANGELOG.md create mode 100644 lib/vendor/symfony/css-selector/CssSelectorConverter.php create mode 100644 lib/vendor/symfony/css-selector/Exception/ExceptionInterface.php create mode 100644 lib/vendor/symfony/css-selector/Exception/ExpressionErrorException.php create mode 100644 lib/vendor/symfony/css-selector/Exception/InternalErrorException.php create mode 100644 lib/vendor/symfony/css-selector/Exception/ParseException.php create mode 100644 lib/vendor/symfony/css-selector/Exception/SyntaxErrorException.php create mode 100644 lib/vendor/symfony/css-selector/LICENSE create mode 100644 lib/vendor/symfony/css-selector/Node/AbstractNode.php create mode 100644 lib/vendor/symfony/css-selector/Node/AttributeNode.php create mode 100644 lib/vendor/symfony/css-selector/Node/ClassNode.php create mode 100644 lib/vendor/symfony/css-selector/Node/CombinedSelectorNode.php create mode 100644 lib/vendor/symfony/css-selector/Node/ElementNode.php create mode 100644 lib/vendor/symfony/css-selector/Node/FunctionNode.php create mode 100644 lib/vendor/symfony/css-selector/Node/HashNode.php create mode 100644 lib/vendor/symfony/css-selector/Node/NegationNode.php create mode 100644 lib/vendor/symfony/css-selector/Node/NodeInterface.php create mode 100644 lib/vendor/symfony/css-selector/Node/PseudoNode.php create mode 100644 lib/vendor/symfony/css-selector/Node/SelectorNode.php create mode 100644 lib/vendor/symfony/css-selector/Node/Specificity.php create mode 100644 lib/vendor/symfony/css-selector/Parser/Handler/CommentHandler.php create mode 100644 lib/vendor/symfony/css-selector/Parser/Handler/HandlerInterface.php create mode 100644 lib/vendor/symfony/css-selector/Parser/Handler/HashHandler.php create mode 100644 lib/vendor/symfony/css-selector/Parser/Handler/IdentifierHandler.php create mode 100644 lib/vendor/symfony/css-selector/Parser/Handler/NumberHandler.php create mode 100644 lib/vendor/symfony/css-selector/Parser/Handler/StringHandler.php create mode 100644 lib/vendor/symfony/css-selector/Parser/Handler/WhitespaceHandler.php create mode 100644 lib/vendor/symfony/css-selector/Parser/Parser.php create mode 100644 lib/vendor/symfony/css-selector/Parser/ParserInterface.php create mode 100644 lib/vendor/symfony/css-selector/Parser/Reader.php create mode 100644 lib/vendor/symfony/css-selector/Parser/Shortcut/ClassParser.php create mode 100644 lib/vendor/symfony/css-selector/Parser/Shortcut/ElementParser.php create mode 100644 lib/vendor/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php create mode 100644 lib/vendor/symfony/css-selector/Parser/Shortcut/HashParser.php create mode 100644 lib/vendor/symfony/css-selector/Parser/Token.php create mode 100644 lib/vendor/symfony/css-selector/Parser/TokenStream.php create mode 100644 lib/vendor/symfony/css-selector/Parser/Tokenizer/Tokenizer.php create mode 100644 lib/vendor/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php create mode 100644 lib/vendor/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php create mode 100644 lib/vendor/symfony/css-selector/README.md create mode 100644 lib/vendor/symfony/css-selector/Tests/CssSelectorConverterTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Node/AbstractNodeTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Node/AttributeNodeTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Node/ClassNodeTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Node/CombinedSelectorNodeTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Node/ElementNodeTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Node/FunctionNodeTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Node/HashNodeTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Node/NegationNodeTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Node/PseudoNodeTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Node/SelectorNodeTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Node/SpecificityTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Parser/Handler/AbstractHandlerTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Parser/Handler/CommentHandlerTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Parser/Handler/HashHandlerTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Parser/Handler/IdentifierHandlerTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Parser/Handler/NumberHandlerTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Parser/Handler/StringHandlerTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Parser/Handler/WhitespaceHandlerTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Parser/ParserTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Parser/ReaderTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Parser/Shortcut/ClassParserTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Parser/Shortcut/ElementParserTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Parser/Shortcut/EmptyStringParserTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Parser/Shortcut/HashParserTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/Parser/TokenStreamTest.php create mode 100644 lib/vendor/symfony/css-selector/Tests/XPath/Fixtures/ids.html create mode 100644 lib/vendor/symfony/css-selector/Tests/XPath/Fixtures/lang.xml create mode 100644 lib/vendor/symfony/css-selector/Tests/XPath/Fixtures/shakespear.html create mode 100644 lib/vendor/symfony/css-selector/Tests/XPath/TranslatorTest.php create mode 100644 lib/vendor/symfony/css-selector/XPath/Extension/AbstractExtension.php create mode 100644 lib/vendor/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php create mode 100644 lib/vendor/symfony/css-selector/XPath/Extension/CombinationExtension.php create mode 100644 lib/vendor/symfony/css-selector/XPath/Extension/ExtensionInterface.php create mode 100644 lib/vendor/symfony/css-selector/XPath/Extension/FunctionExtension.php create mode 100644 lib/vendor/symfony/css-selector/XPath/Extension/HtmlExtension.php create mode 100644 lib/vendor/symfony/css-selector/XPath/Extension/NodeExtension.php create mode 100644 lib/vendor/symfony/css-selector/XPath/Extension/PseudoClassExtension.php create mode 100644 lib/vendor/symfony/css-selector/XPath/Translator.php create mode 100644 lib/vendor/symfony/css-selector/XPath/TranslatorInterface.php create mode 100644 lib/vendor/symfony/css-selector/XPath/XPathExpr.php create mode 100644 lib/vendor/symfony/css-selector/composer.json create mode 100644 lib/vendor/symfony/css-selector/phpunit.xml.dist create mode 100644 lib/vendor/symfony/dom-crawler/.gitignore create mode 100644 lib/vendor/symfony/dom-crawler/AbstractUriElement.php create mode 100644 lib/vendor/symfony/dom-crawler/CHANGELOG.md create mode 100644 lib/vendor/symfony/dom-crawler/Crawler.php create mode 100644 lib/vendor/symfony/dom-crawler/Field/ChoiceFormField.php create mode 100644 lib/vendor/symfony/dom-crawler/Field/FileFormField.php create mode 100644 lib/vendor/symfony/dom-crawler/Field/FormField.php create mode 100644 lib/vendor/symfony/dom-crawler/Field/InputFormField.php create mode 100644 lib/vendor/symfony/dom-crawler/Field/TextareaFormField.php create mode 100644 lib/vendor/symfony/dom-crawler/Form.php create mode 100644 lib/vendor/symfony/dom-crawler/FormFieldRegistry.php create mode 100644 lib/vendor/symfony/dom-crawler/Image.php create mode 100644 lib/vendor/symfony/dom-crawler/LICENSE create mode 100644 lib/vendor/symfony/dom-crawler/Link.php create mode 100644 lib/vendor/symfony/dom-crawler/README.md create mode 100644 lib/vendor/symfony/dom-crawler/Tests/CrawlerTest.php create mode 100644 lib/vendor/symfony/dom-crawler/Tests/Field/ChoiceFormFieldTest.php create mode 100644 lib/vendor/symfony/dom-crawler/Tests/Field/FileFormFieldTest.php create mode 100644 lib/vendor/symfony/dom-crawler/Tests/Field/FormFieldTest.php create mode 100644 lib/vendor/symfony/dom-crawler/Tests/Field/FormFieldTestCase.php create mode 100644 lib/vendor/symfony/dom-crawler/Tests/Field/InputFormFieldTest.php create mode 100644 lib/vendor/symfony/dom-crawler/Tests/Field/TextareaFormFieldTest.php create mode 100644 lib/vendor/symfony/dom-crawler/Tests/Fixtures/no-extension create mode 100644 lib/vendor/symfony/dom-crawler/Tests/Fixtures/windows-1250.html create mode 100644 lib/vendor/symfony/dom-crawler/Tests/FormTest.php create mode 100644 lib/vendor/symfony/dom-crawler/Tests/ImageTest.php create mode 100644 lib/vendor/symfony/dom-crawler/Tests/LinkTest.php create mode 100644 lib/vendor/symfony/dom-crawler/composer.json create mode 100644 lib/vendor/symfony/dom-crawler/phpunit.xml.dist create mode 100644 lib/vendor/symfony/event-dispatcher/.gitignore create mode 100644 lib/vendor/symfony/event-dispatcher/CHANGELOG.md create mode 100644 lib/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php create mode 100644 lib/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php create mode 100644 lib/vendor/symfony/event-dispatcher/Debug/WrappedListener.php create mode 100644 lib/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php create mode 100644 lib/vendor/symfony/event-dispatcher/Event.php create mode 100644 lib/vendor/symfony/event-dispatcher/EventDispatcher.php create mode 100644 lib/vendor/symfony/event-dispatcher/EventDispatcherInterface.php create mode 100644 lib/vendor/symfony/event-dispatcher/EventSubscriberInterface.php create mode 100644 lib/vendor/symfony/event-dispatcher/GenericEvent.php create mode 100644 lib/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php create mode 100644 lib/vendor/symfony/event-dispatcher/LICENSE create mode 100644 lib/vendor/symfony/event-dispatcher/README.md create mode 100644 lib/vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php create mode 100644 lib/vendor/symfony/event-dispatcher/Tests/Debug/TraceableEventDispatcherTest.php create mode 100644 lib/vendor/symfony/event-dispatcher/Tests/Debug/WrappedListenerTest.php create mode 100644 lib/vendor/symfony/event-dispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php create mode 100644 lib/vendor/symfony/event-dispatcher/Tests/EventDispatcherTest.php create mode 100644 lib/vendor/symfony/event-dispatcher/Tests/EventTest.php create mode 100644 lib/vendor/symfony/event-dispatcher/Tests/GenericEventTest.php create mode 100644 lib/vendor/symfony/event-dispatcher/Tests/ImmutableEventDispatcherTest.php create mode 100644 lib/vendor/symfony/event-dispatcher/composer.json create mode 100644 lib/vendor/symfony/event-dispatcher/phpunit.xml.dist create mode 100644 lib/vendor/symfony/finder/.gitignore create mode 100644 lib/vendor/symfony/finder/CHANGELOG.md create mode 100644 lib/vendor/symfony/finder/Comparator/Comparator.php create mode 100644 lib/vendor/symfony/finder/Comparator/DateComparator.php create mode 100644 lib/vendor/symfony/finder/Comparator/NumberComparator.php create mode 100644 lib/vendor/symfony/finder/Exception/AccessDeniedException.php create mode 100644 lib/vendor/symfony/finder/Finder.php create mode 100644 lib/vendor/symfony/finder/Glob.php create mode 100644 lib/vendor/symfony/finder/Iterator/CustomFilterIterator.php create mode 100644 lib/vendor/symfony/finder/Iterator/DateRangeFilterIterator.php create mode 100644 lib/vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php create mode 100644 lib/vendor/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php create mode 100644 lib/vendor/symfony/finder/Iterator/FileTypeFilterIterator.php create mode 100644 lib/vendor/symfony/finder/Iterator/FilecontentFilterIterator.php create mode 100644 lib/vendor/symfony/finder/Iterator/FilenameFilterIterator.php create mode 100644 lib/vendor/symfony/finder/Iterator/MultiplePcreFilterIterator.php create mode 100644 lib/vendor/symfony/finder/Iterator/PathFilterIterator.php create mode 100644 lib/vendor/symfony/finder/Iterator/RecursiveDirectoryIterator.php create mode 100644 lib/vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php create mode 100644 lib/vendor/symfony/finder/Iterator/SortableIterator.php create mode 100644 lib/vendor/symfony/finder/LICENSE create mode 100644 lib/vendor/symfony/finder/README.md create mode 100644 lib/vendor/symfony/finder/SplFileInfo.php create mode 100644 lib/vendor/symfony/finder/Tests/Comparator/ComparatorTest.php create mode 100644 lib/vendor/symfony/finder/Tests/Comparator/DateComparatorTest.php create mode 100644 lib/vendor/symfony/finder/Tests/Comparator/NumberComparatorTest.php create mode 100644 lib/vendor/symfony/finder/Tests/FinderTest.php create mode 100644 lib/vendor/symfony/finder/Tests/Fixtures/.dot/a create mode 100644 lib/vendor/symfony/finder/Tests/Fixtures/.dot/b/c.neon create mode 100644 lib/vendor/symfony/finder/Tests/Fixtures/.dot/b/d.neon create mode 100644 lib/vendor/symfony/finder/Tests/Fixtures/A/B/C/abc.dat create mode 100644 lib/vendor/symfony/finder/Tests/Fixtures/A/B/ab.dat create mode 100644 lib/vendor/symfony/finder/Tests/Fixtures/A/a.dat create mode 100644 lib/vendor/symfony/finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy create mode 100644 lib/vendor/symfony/finder/Tests/Fixtures/copy/A/B/ab.dat.copy create mode 100644 lib/vendor/symfony/finder/Tests/Fixtures/copy/A/a.dat.copy create mode 100644 lib/vendor/symfony/finder/Tests/Fixtures/dolor.txt create mode 100644 lib/vendor/symfony/finder/Tests/Fixtures/ipsum.txt create mode 100644 lib/vendor/symfony/finder/Tests/Fixtures/lorem.txt create mode 100644 lib/vendor/symfony/finder/Tests/Fixtures/one/.dot create mode 100644 lib/vendor/symfony/finder/Tests/Fixtures/one/a create mode 100644 lib/vendor/symfony/finder/Tests/Fixtures/one/b/c.neon create mode 100644 lib/vendor/symfony/finder/Tests/Fixtures/one/b/d.neon create mode 100644 lib/vendor/symfony/finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat create mode 100644 lib/vendor/symfony/finder/Tests/Fixtures/with space/foo.txt create mode 100644 lib/vendor/symfony/finder/Tests/GlobTest.php create mode 100644 lib/vendor/symfony/finder/Tests/Iterator/CustomFilterIteratorTest.php create mode 100644 lib/vendor/symfony/finder/Tests/Iterator/DateRangeFilterIteratorTest.php create mode 100644 lib/vendor/symfony/finder/Tests/Iterator/DepthRangeFilterIteratorTest.php create mode 100644 lib/vendor/symfony/finder/Tests/Iterator/ExcludeDirectoryFilterIteratorTest.php create mode 100644 lib/vendor/symfony/finder/Tests/Iterator/FileTypeFilterIteratorTest.php create mode 100644 lib/vendor/symfony/finder/Tests/Iterator/FilecontentFilterIteratorTest.php create mode 100644 lib/vendor/symfony/finder/Tests/Iterator/FilenameFilterIteratorTest.php create mode 100644 lib/vendor/symfony/finder/Tests/Iterator/Iterator.php create mode 100644 lib/vendor/symfony/finder/Tests/Iterator/IteratorTestCase.php create mode 100644 lib/vendor/symfony/finder/Tests/Iterator/MockFileListIterator.php create mode 100644 lib/vendor/symfony/finder/Tests/Iterator/MockSplFileInfo.php create mode 100644 lib/vendor/symfony/finder/Tests/Iterator/MultiplePcreFilterIteratorTest.php create mode 100644 lib/vendor/symfony/finder/Tests/Iterator/PathFilterIteratorTest.php create mode 100644 lib/vendor/symfony/finder/Tests/Iterator/RealIteratorTestCase.php create mode 100644 lib/vendor/symfony/finder/Tests/Iterator/RecursiveDirectoryIteratorTest.php create mode 100644 lib/vendor/symfony/finder/Tests/Iterator/SizeRangeFilterIteratorTest.php create mode 100644 lib/vendor/symfony/finder/Tests/Iterator/SortableIteratorTest.php create mode 100644 lib/vendor/symfony/finder/composer.json create mode 100644 lib/vendor/symfony/finder/phpunit.xml.dist create mode 100644 lib/vendor/symfony/lib/config/config/services.yml create mode 100644 lib/vendor/symfony/lib/config/sfServiceConfigHandler.class.php create mode 100644 lib/vendor/symfony/lib/event/sfEvent.class.php create mode 100644 lib/vendor/symfony/lib/event/sfEventDispatcher.class.php delete mode 100644 lib/vendor/symfony/lib/event_dispatcher/sfEvent.php delete mode 100644 lib/vendor/symfony/lib/event_dispatcher/sfEventDispatcher.php create mode 100644 lib/vendor/symfony/lib/i18n/sfMessageSource_SQLite3.class.php create mode 100644 lib/vendor/symfony/lib/log/sfEventLogger.class.php create mode 100644 lib/vendor/symfony/lib/log/sfPsrLoggerAdapter.class.php create mode 100644 lib/vendor/symfony/lib/mailer/sfNoMailer.class.php create mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/task/sfDoctrineCompileTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Adapter/Statement/Oracle.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cli.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Column.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Mssql.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Oracle.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Pgsql.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/UnitOfWork.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Data/Export.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/DataDict/Mssql.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/DataDict/Mysql.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/DataDict/Pgsql.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Event.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Export.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Export/Mssql.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Export/Mysql.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Export/Pgsql.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Expression/Mssql.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Expression/Pgsql.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Hydrator/Abstract.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Import/Mssql.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Import/Mysql.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Import/Pgsql.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Parser.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Parser/sfYaml/sfYamlInline.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Parser/sfYaml/sfYamlParser.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Query/Abstract.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Query/Tokenizer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Record/Abstract.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Relation/Parser.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Table.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Validator.php create mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/widget/sfWidgetFormDoctrineArrayChoice.class.php create mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/config/doctrine/linked_schema.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/SettingsPlugin/base/BaseSettingFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BaseArticleFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BaseArticleTranslationFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BaseAttachmentFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BaseAuthorFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BaseAuthorInheritanceConcreteFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BaseAuthorInheritanceFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BaseBlogArticleFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BaseBlogArticleTranslationFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BaseBlogAuthorFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BaseCamelCaseFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BaseDefaultValueTestFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BaseFormGeneratorTest2FormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BaseGroupFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BasePermissionFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BaseProfileFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BaseResourceTypeFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BaseSubscriptionFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BaseUniqueTestFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/filter/doctrine/base/BaseUserFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/SettingsPlugin/base/BaseSettingForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/base/BaseArticleForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/base/BaseArticleTranslationForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/base/BaseAttachmentForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/base/BaseAuthorForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/base/BaseAuthorInheritanceConcreteForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/base/BaseAuthorInheritanceForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/base/BaseBlogArticleForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/base/BaseBlogArticleTranslationForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/base/BaseBlogAuthorForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/base/BaseCamelCaseForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/base/BaseDefaultValueTestForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/base/BaseFormGeneratorTestForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/base/BaseGroupForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/base/BasePermissionForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/base/BaseProfileForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/base/BaseResourceTypeForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/base/BaseSubscriptionForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/base/BaseUniqueTestForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/form/doctrine/base/BaseUserForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/SettingsPlugin/base/BaseSetting.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseArticle.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseAttachment.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseAuthor.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseAuthorInheritance.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseAuthorInheritanceConcrete.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseBlogArticle.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseBlogAuthor.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseCamelCase.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseDefaultValueTest.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseFormGeneratorTest.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseFormGeneratorTest2.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseFormGeneratorTest3.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseGroup.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseGroupPermission.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseModelFromLinkedSchema.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseModelWithNumberInColumn.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BasePermission.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseProfile.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseResourceType.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseSubscription.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseUniqueTest.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseUser.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseUserGroup.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/functional/fixtures/lib/model/doctrine/base/BaseUserPermission.class.php create mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/unit/widget/sfWidgetFormDoctrineArrayChoiceTest.php create mode 100644 lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/test/unit/widget/sfWidgetFormDoctrineChoiceTest.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/LICENSE delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/LICENSE.Agavi delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/LICENSE.Propel delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/LICENSE.phing delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/config/autoload.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/config/installer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/config/sfPropelPluginConfiguration.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/config/skeleton/config/databases.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/config/skeleton/config/propel.ini delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelForm/default/template/sfPropelFormBaseTemplate.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelForm/default/template/sfPropelFormGeneratedTemplate.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelForm/default/template/sfPropelFormTemplate.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelFormFilter/default/template/sfPropelFormFilterBaseTemplate.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelFormFilter/default/template/sfPropelFormFilterGeneratedTemplate.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelFormFilter/default/template/sfPropelFormFilterTemplate.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/parts/actionsConfiguration.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/parts/batchAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/parts/configuration.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/parts/createAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/parts/deleteAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/parts/editAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/parts/fieldsConfiguration.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/parts/filterAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/parts/filtersAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/parts/indexAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/parts/newAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/parts/paginationAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/parts/paginationConfiguration.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/parts/processFormAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/parts/sortingAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/parts/sortingConfiguration.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/parts/updateAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/skeleton/actions/actions.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/skeleton/config/generator.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/skeleton/lib/configuration.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/skeleton/lib/helper.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/actions/actions.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/lib/helper.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_assets.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_filters.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_filters_field.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_flashes.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_form.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_form_actions.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_form_field.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_form_fieldset.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_list.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_list_actions.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_list_batch_actions.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_list_field_boolean.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_list_td_actions.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_list_td_batch_actions.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_list_td_stacked.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_list_td_tabular.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_list_th_stacked.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_list_th_tabular.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/_pagination.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/editSuccess.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/indexSuccess.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/admin/template/templates/newSuccess.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/default/parts/createAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/default/parts/deleteAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/default/parts/editAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/default/parts/indexAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/default/parts/newAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/default/parts/processFormAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/default/parts/showAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/default/parts/updateAction.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/default/skeleton/actions/actions.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/default/skeleton/config/generator.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/default/template/actions/actions.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/default/template/templates/_form.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/default/template/templates/editSuccess.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/default/template/templates/indexSuccess.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/default/template/templates/newSuccess.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/data/generator/sfPropelModule/default/template/templates/showSuccess.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.ar.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.bg.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.ca.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.cs.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.da.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.de.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.el.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.es.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.es_AR.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.eu.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.fa.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.fi.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.fr.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.hr.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.hu.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.id.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.it.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.ja.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.lt.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.lv.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.nl.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.no.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.pl.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.pt.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.pt_BR.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.ro.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.ru.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.sk.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.sl.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.sv.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.tr.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.uk.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.zh_CN.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/i18n/sf_admin.zh_TW.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/addon/sfMixer.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/addon/sfPropel.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/addon/sfPropelBehavior.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/addon/sfPropelData.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/addon/sfPropelDatabaseSchema.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/addon/sfPropelManyToMany.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/addon/sfPropelPager.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/behavior/SfPropelBehaviorBase.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/behavior/SfPropelBehaviorI18n.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/behavior/SfPropelBehaviorI18nTranslation.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/behavior/SfPropelBehaviorSymfony.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/behavior/SfPropelBehaviorSymfonyBehaviors.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/behavior/SfPropelBehaviorTimestampable.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/database/sfPropelDatabase.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/debug/sfWebDebugPanelPropel.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/form/sfFormFilterPropel.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/form/sfFormPropel.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/generator/sfPropelFormFilterGenerator.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/generator/sfPropelFormGenerator.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/generator/sfPropelGenerator.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/log/sfPropelLogger.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/mailer/Swift_PropelSpool.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/routing/sfPropelRoute.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/routing/sfPropelRouteCollection.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/phing/phing_default_overrides delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/phing/tasks/defaults.properties delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/phing/types/defaults.properties delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPhing.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPhingListener.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPropelBaseTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPropelBuildAllLoadTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPropelBuildAllTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPropelBuildFiltersTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPropelBuildFormsTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPropelBuildModelTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPropelBuildSchemaTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPropelBuildSqlTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPropelBuildTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPropelConfigureDatabaseTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPropelDataDumpTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPropelDataLoadTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPropelGenerateAdminTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPropelGenerateModuleForRouteTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPropelGenerateModuleTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPropelGraphvizTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPropelInsertSqlTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPropelSchemaToXmlTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/task/sfPropelSchemaToYmlTask.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/test/sfTesterPropel.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/validator/sfValidatorPropelChoice.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/validator/sfValidatorPropelUnique.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/BuildEvent.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/BuildException.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/BuildListener.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/BuildLogger.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/ConfigurationException.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/IntrospectionHelper.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/Phing.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/Project.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/ProjectComponent.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/RuntimeConfigurable.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/Target.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/Task.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/TaskAdapter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/TaskContainer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/UnknownElement.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/BaseFilterReader.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/BaseParamFilterReader.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/ChainableReader.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/ExpandProperties.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/HeadFilter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/LineContains.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/LineContainsRegexp.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/PrefixLines.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/ReplaceRegexp.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/ReplaceTokens.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/StripLineBreaks.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/StripLineComments.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/StripPhpComments.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/StripWhitespace.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/TabToSpaces.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/TailFilter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/TidyFilter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/TranslateGettext.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/XincludeFilter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/XsltFilter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/util/ChainReaderHelper.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/filters/util/IniFileTokenReader.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/input/DefaultInputHandler.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/input/InputHandler.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/input/InputRequest.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/input/MultipleChoiceInputRequest.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/input/PropertyFileInputHandler.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/input/YesNoInputRequest.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/lib/Capsule.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/lib/Zip.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/listener/AnsiColorLogger.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/listener/DefaultLogger.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/listener/NoBannerLogger.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/listener/PearLogListener.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/listener/StreamRequiredBuildLogger.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/listener/XmlLogger.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/listener/defaults.properties delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/mappers/FileNameMapper.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/mappers/FlattenMapper.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/mappers/GlobMapper.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/mappers/IdentityMapper.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/mappers/MergeMapper.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/mappers/RegexpMapper.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/parser/AbstractHandler.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/parser/AbstractSAXParser.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/parser/DataTypeHandler.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/parser/ExpatParseException.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/parser/ExpatParser.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/parser/Location.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/parser/NestedElementHandler.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/parser/ProjectConfigurator.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/parser/ProjectHandler.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/parser/RootHandler.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/parser/TargetHandler.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/parser/TaskHandler.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/BufferedReader.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/BufferedWriter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/ConsoleReader.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/FileInputStream.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/FileOutputStream.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/FileReader.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/FileSystem.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/FileWriter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/FilterReader.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/IOException.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/InputStream.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/InputStreamReader.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/OutputStream.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/OutputStreamWriter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/PhingFile.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/Reader.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/StringReader.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/UnixFileSystem.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/Win32FileSystem.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/WinNTFileSystem.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/io/Writer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/lang/Character.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/lang/EventObject.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/lang/FileNotFoundException.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/lang/NullPointerException.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/lang/SecurityException.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/util/Message.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/util/Properties.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/util/Register.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/system/util/Timer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/defaults.properties delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/CapsuleTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/ExtractBaseTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/FtpDeployTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/JslLintTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/MailTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/ManifestTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/PackageAsPathTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/PearPackage2Task.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/PearPackageTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/PhpCodeSnifferTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/PhpLintTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/ScpSendTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/SmartyTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/TarTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/UntarTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/UnzipTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/XmlLintTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/ZendCodeAnalyzerTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/ZipTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/coverage/CoverageMerger.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/coverage/CoverageMergerTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/coverage/CoverageReportTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/coverage/CoverageReportTransformer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/coverage/CoverageSetupTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/creole/CreoleSQLExecTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/creole/CreoleTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/dbdeploy/DbDeployTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/dbdeploy/DbmsSyntax.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/dbdeploy/DbmsSyntaxFactory.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/dbdeploy/DbmsSyntaxMsSql.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/dbdeploy/DbmsSyntaxMysql.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/dbdeploy/DbmsSyntaxSQLite.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/ioncube/IoncubeComment.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/ioncube/IoncubeEncoderTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/ioncube/IoncubeLicenseTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/pdo/PDOResultFormatter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/pdo/PDOSQLExecFormatterElement.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/pdo/PDOSQLExecTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/pdo/PDOTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/pdo/PlainPDOResultFormatter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/pdo/XMLPDOResultFormatter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/pearpackage/Fileset.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/phpdoc/PhingPhpDocumentorSetup.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/phpdoc/PhpDocumentorExternalTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/phpdoc/PhpDocumentorTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/phpunit/BatchTest.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/phpunit/FormatterElement.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/phpunit/PHPUnitReportTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/phpunit/PHPUnitTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/phpunit/PHPUnitTestRunner.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/phpunit/PHPUnitUtil.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/phpunit/phpunit2/PHPUnit2ResultFormatter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/phpunit/phpunit2/PlainPHPUnit2ResultFormatter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/phpunit/phpunit2/SummaryPHPUnit2ResultFormatter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/phpunit/phpunit2/XMLPHPUnit2ResultFormatter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/phpunit/phpunit3/PHPUnit3ResultFormatter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/phpunit/phpunit3/PlainPHPUnit3ResultFormatter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/phpunit/phpunit3/SummaryPHPUnit3ResultFormatter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/phpunit/phpunit3/XMLPHPUnit3ResultFormatter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/simpletest/SimpleTestCountResultFormatter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/simpletest/SimpleTestFormatterElement.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/simpletest/SimpleTestPlainResultFormatter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/simpletest/SimpleTestResultFormatter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/simpletest/SimpleTestSummaryResultFormatter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/simpletest/SimpleTestTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/svn/SvnBaseTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/svn/SvnCheckoutTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/svn/SvnExportTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/svn/SvnLastRevisionTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/ext/svn/SvnUpdateTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/AdhocTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/AdhocTaskdefTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/AdhocTypedefTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/AppendTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/AvailableTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/ChmodTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/ChownTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/ConditionTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/CopyTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/CvsPassTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/CvsTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/DeleteTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/EchoTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/ExecTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/ExitTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/ForeachTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/IfTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/IncludePathTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/InputTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/MatchingTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/MkdirTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/MoveTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/PhingCallTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/PhingTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/PhpEvalTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/PropertyPromptTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/PropertyTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/ReflexiveTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/ResolvePathTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/SequentialTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/TaskdefTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/TouchTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/TstampTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/TypedefTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/UpToDateTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/WarnTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/XsltTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/condition/AndCondition.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/condition/Condition.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/condition/ConditionBase.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/condition/ContainsCondition.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/condition/EqualsCondition.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/condition/IsFalseCondition.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/condition/IsSetCondition.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/condition/IsTrueCondition.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/condition/NotCondition.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/condition/OrCondition.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/condition/OsCondition.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/tasks/system/condition/ReferenceExistsCondition.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/AbstractFileSet.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/Commandline.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/DataType.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/Description.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/DirSet.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/FileList.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/FileSet.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/FilterChain.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/Mapper.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/Parameter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/Parameterizable.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/Path.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/PatternSet.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/PhingFilterReader.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/Reference.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/RegularExpression.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/TokenReader.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/TokenSource.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/defaults.properties delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/AndSelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/BaseExtendSelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/BaseSelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/BaseSelectorContainer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/ContainsRegexpSelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/ContainsSelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/DateSelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/DependSelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/DepthSelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/ExtendFileSelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/ExtendSelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/FileSelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/FilenameSelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/MajoritySelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/NoneSelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/NotSelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/OrSelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/PresentSelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/SelectSelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/SelectorContainer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/SelectorScanner.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/SelectorUtils.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/SizeSelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/types/selectors/TypeSelector.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/util/DirectoryScanner.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/util/ExtendedFileStream.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/util/FileUtils.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/util/LogWriter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/util/PathTokenizer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/util/SourceFileScanner.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/util/StringHelper.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/util/regexp/PregEngine.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/util/regexp/Regexp.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/phing/util/regexp/RegexpEngine.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/bin/propel-gen delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/bin/propel-gen.bat delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/build-propel.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/build.properties-sample delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/build.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/build.xml-local delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/EngineException.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/GeneratorConfig.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/behavior/AlternativeCodingStandardsBehavior.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/behavior/AutoAddPkBehavior.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/behavior/SoftDeleteBehavior.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/behavior/TimestampableBehavior.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/DataModelBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/om/ClassTools.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/om/OMBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/om/ObjectBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/om/PeerBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/om/php5/PHP5ExtensionNodeBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/om/php5/PHP5ExtensionNodePeerBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/om/php5/PHP5ExtensionObjectBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/om/php5/PHP5ExtensionPeerBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/om/php5/PHP5InterfaceBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/om/php5/PHP5MultiExtendObjectBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/om/php5/PHP5NestedSetBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/om/php5/PHP5NestedSetPeerBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/om/php5/PHP5NodeBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/om/php5/PHP5NodePeerBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/om/php5/PHP5ObjectBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/om/php5/PHP5PeerBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/om/php5/PHP5TableMapBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/sql/DDLBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/sql/DataSQLBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/sql/mssql/MssqlDDLBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/sql/mssql/MssqlDataSQLBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/sql/mysql/MysqlDDLBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/sql/mysql/MysqlDataSQLBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/sql/oracle/OracleDDLBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/sql/oracle/OracleDataSQLBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/sql/pgsql/PgsqlDDLBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/sql/pgsql/PgsqlDataSQLBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/sql/sqlite/SqliteDDLBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/sql/sqlite/SqliteDataSQLBuilder.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/util/DefaultEnglishPluralizer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/util/Pluralizer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/builder/util/transform/XmlToDataSQL.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/AppData.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/Behavior.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/Column.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/ColumnDefaultValue.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/ConstraintNameGenerator.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/Database.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/Domain.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/ForeignKey.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/IDMethod.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/IdMethodParameter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/Index.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/Inheritance.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/NameFactory.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/NameGenerator.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/PhpNameGenerator.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/PropelTypes.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/Rule.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/Table.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/Unique.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/Validator.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/VendorInfo.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/model/XMLElement.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/reverse/BaseSchemaParser.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/reverse/SchemaParser.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/reverse/mssql/MssqlSchemaParser.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/reverse/mysql/MysqlSchemaParser.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/reverse/oracle/OracleSchemaParser.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/reverse/pgsql/PgsqlSchemaParser.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/reverse/sqlite/SqliteSchemaParser.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/database/transform/XmlToAppData.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/platform/DefaultPlatform.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/platform/MssqlPlatform.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/platform/MysqlPlatform.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/platform/OraclePlatform.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/platform/PgsqlPlatform.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/platform/Platform.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/engine/platform/SqlitePlatform.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/phing/AbstractPropelDataModelTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/phing/PropelConvertConfTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/phing/PropelCreoleTransformTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/phing/PropelDataDTDTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/phing/PropelDataDumpTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/phing/PropelDataModelTemplateTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/phing/PropelDataSQLTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/phing/PropelGraphvizTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/phing/PropelOMTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/phing/PropelSQLExec.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/phing/PropelSQLTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/classes/propel/phing/PropelSchemaReverseTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/default.properties delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/pear/BuildPropelGenPEARPackageTask.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/pear/build-pear-package.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/pear/build.properties delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/pear/pear-build.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/pear/pear-propel-gen delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/pear/pear-propel-gen.bat delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/resources/dtd/database.dtd delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/resources/xsd/custom_datatypes.xsd delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/resources/xsd/database.xsd delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/resources/xsl/database.xsl delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/Propel.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/PropelException.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/adapter/DBAdapter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/adapter/DBMSSQL.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/adapter/DBMySQL.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/adapter/DBNone.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/adapter/DBOracle.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/adapter/DBPostgres.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/adapter/DBSQLite.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/adapter/MSSQL/MssqlDateTime.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/adapter/MSSQL/MssqlDebugPDO.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/adapter/MSSQL/MssqlPropelPDO.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/logger/BasicLogger.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/logger/MojaviLogAdapter.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/map/ColumnMap.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/map/DatabaseMap.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/map/RelationMap.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/map/TableMap.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/map/ValidatorMap.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/om/BaseObject.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/om/NestedSetRecursiveIterator.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/om/NodeObject.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/om/Persistent.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/om/PreOrderNodeIterator.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/util/BasePeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/util/Criteria.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/util/DebugPDO.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/util/DebugPDOStatement.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/util/Join.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/util/NodePeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/util/PropelColumnTypes.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/util/PropelConfiguration.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/util/PropelConfigurationIterator.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/util/PropelDateTime.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/util/PropelPDO.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/util/PropelPager.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/validator/BasicValidator.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/validator/MatchValidator.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/validator/MaxLengthValidator.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/validator/MaxValueValidator.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/validator/MinLengthValidator.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/validator/MinValueValidator.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/validator/NotMatchValidator.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/validator/RequiredValidator.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/validator/TypeValidator.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/validator/UniqueValidator.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/validator/ValidValuesValidator.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/vendor/propel/validator/ValidationFailed.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/lib/widget/sfWidgetFormPropelChoice.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/bin/prove.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/bootstrap/functional.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/bootstrap/unit.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/crud/crud10Test.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/crud/crud2Test.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/crud/crud3Test.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/crud/crud6Test.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/crud/crud7Test.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/crud/crud9Test.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/crud/crudBrowser.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/crud/rest1Test.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/crud/rest2Test.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/crud/restBrowser.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat/config/backend_compatConfiguration.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat/config/settings.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat/modules/article/actions/actions.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat/modules/article/config/generator.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat/modules/article/templates/_body.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat/modules/error/actions/actions.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat/modules/error/config/generator.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat/modules/inheritance/actions/actions.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat/modules/inheritance/config/generator.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat/modules/validation/actions/actions.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat/modules/validation/config/generator.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat/modules/validation/validate/edit.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/crud/config/crudConfiguration.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/crud/config/filters.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/crud/config/routing.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/crud/config/settings.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/crud/modules/error/actions/actions.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/crud/modules/error/config/generator.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/config/app.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/config/cache.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/config/filters.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/config/frontendConfiguration.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/config/routing.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/config/settings.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/config/view.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/modules/attachment/actions/actions.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/modules/attachment/templates/indexSuccess.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/modules/choice/actions/actions.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/modules/choice/templates/articleSuccess.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/modules/i18n/actions/actions.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/modules/i18n/templates/indexSuccess.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/modules/i18n/templates/movieSuccess.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/modules/i18n/templates/productsSuccess.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/modules/pager/actions/actions.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/modules/pager/templates/interfacesSuccess.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/modules/pooling/actions/actions.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/modules/unique/actions/actions.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/modules/unique/templates/articleSuccess.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/modules/unique/templates/categorySuccess.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/modules/unique/templates/editSuccess.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend/templates/layout.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/config/ProjectConfiguration.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/config/databases.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/config/propel.ini delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/config/properties.ini delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/config/rsync_exclude.txt delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/config/schema.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/data/database.sqlite delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/data/fixtures/fixtures.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/data/sql/lib.model.schema.sql delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/data/sql/sqldb.map delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/filter/ArticleFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/filter/AttachmentFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/filter/AuthorFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/filter/BaseFormFilterPropel.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/filter/BookFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/filter/CategoryFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/filter/MovieFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/filter/MovieI18nFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/filter/ProductFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/filter/ProductI18nFormFilter.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/ArticleForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/AttachmentForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/AuthorForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/BaseForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/BaseFormPropel.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/BookForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/CategoryForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/MovieForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/MovieI18nForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/ProductForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/ProductI18nForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/base/BaseArticleForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/base/BaseAttachmentForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/base/BaseAuthorForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/base/BaseBookForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/base/BaseCategoryForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/base/BaseMovieForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/base/BaseMovieI18nForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/base/BaseProductForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/form/base/BaseProductI18nForm.class.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/Article.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/ArticlePeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/Attachment.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/AttachmentPeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/Author.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/AuthorArticle.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/AuthorArticlePeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/AuthorPeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/Book.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/BookPeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/Category.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/CategoryPeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/Movie.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/MovieI18n.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/MovieI18nPeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/MoviePeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/Product.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/ProductI18n.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/ProductI18nPeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/ProductPeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/map/ArticleTableMap.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/map/AttachmentTableMap.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/map/AuthorArticleTableMap.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/map/AuthorTableMap.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/map/BookTableMap.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/map/CategoryTableMap.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/map/MovieI18nTableMap.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/map/MovieTableMap.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/map/ProductI18nTableMap.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/map/ProductTableMap.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseArticle.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseArticlePeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseAttachment.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseAttachmentPeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseAuthor.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseAuthorArticle.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseAuthorArticlePeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseAuthorPeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseBook.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseBookPeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseCategory.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseCategoryPeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseMovie.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseMovieI18n.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseMovieI18nPeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseMoviePeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseProduct.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseProductI18n.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseProductI18nPeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/lib/model/om/BaseProductPeer.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/fixtures/symfony delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/formTest.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/i18nTest.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/pagerTest.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/functional/poolingTest.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/unit/database/sfPropelDatabaseTest.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/unit/debug/sfWebDebugPanelPropelTest.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/unit/fixtures/new_schema.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/unit/fixtures/schema.xml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/unit/fixtures/schema.yml delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/unit/form/sfFormPropelTest.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/unit/sfMixerTest.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/unit/sfPropelDatabaseSchemaTest.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/unit/task/sfPhingTest.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/test/unit/validator/sfValidatorPropelUniqueTest.php delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/web/css/default.css delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/web/css/global.css delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/web/images/asc.png delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/web/images/default.png delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/web/images/delete.png delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/web/images/desc.png delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/web/images/edit.png delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/web/images/error.png delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/web/images/first.png delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/web/images/last.png delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/web/images/list.png delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/web/images/new.png delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/web/images/next.png delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/web/images/previous.png delete mode 100644 lib/vendor/symfony/lib/plugins/sfPropelPlugin/web/images/tick.png create mode 100644 lib/vendor/symfony/lib/service/sfServiceContainer.class.php create mode 100644 lib/vendor/symfony/lib/service/sfServiceContainerBuilder.class.php create mode 100644 lib/vendor/symfony/lib/service/sfServiceContainerDumper.class.php create mode 100644 lib/vendor/symfony/lib/service/sfServiceContainerDumperGraphviz.class.php create mode 100644 lib/vendor/symfony/lib/service/sfServiceContainerDumperInterface.class.php create mode 100644 lib/vendor/symfony/lib/service/sfServiceContainerDumperPhp.class.php create mode 100644 lib/vendor/symfony/lib/service/sfServiceContainerInterface.class.php create mode 100644 lib/vendor/symfony/lib/service/sfServiceContainerLoader.class.php create mode 100644 lib/vendor/symfony/lib/service/sfServiceContainerLoaderArray.class.php create mode 100644 lib/vendor/symfony/lib/service/sfServiceContainerLoaderInterface.class.php create mode 100644 lib/vendor/symfony/lib/service/sfServiceDefinition.class.php create mode 100644 lib/vendor/symfony/lib/service/sfServiceParameter.class.php create mode 100644 lib/vendor/symfony/lib/service/sfServiceReference.class.php create mode 100644 lib/vendor/symfony/lib/task/test/sfTestPluginTask.class.php create mode 100644 lib/vendor/symfony/lib/validator/sfValidatorEqual.class.php create mode 100644 lib/vendor/symfony/lib/validator/sfValidatorFileMulti.class.php create mode 100644 lib/vendor/symfony/lib/validator/sfValidatorIp.class.php delete mode 100644 lib/vendor/symfony/lib/validator/sfValidatorSchemaForEach.class.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Attachment.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/ByteStream/AbstractFilterableInputStream.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/ByteStream/ArrayByteStream.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/ByteStream/FileByteStream.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/CharacterReader.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/CharacterReader/GenericFixedWidthReader.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/CharacterReader/UsAsciiReader.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/CharacterReader/Utf8Reader.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/CharacterReaderFactory.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/CharacterReaderFactory/SimpleCharacterReaderFactory.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/CharacterStream.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/CharacterStream/ArrayCharacterStream.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/CharacterStream/NgCharacterStream.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/ConfigurableSpool.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/DependencyContainer.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/DependencyException.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/EmbeddedFile.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Encoder.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Encoder/Base64Encoder.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Encoder/QpEncoder.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Encoder/Rfc2231Encoder.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Encoding.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Events/CommandEvent.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Events/CommandListener.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Events/Event.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Events/EventDispatcher.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Events/EventObject.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Events/ResponseEvent.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Events/ResponseListener.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Events/SendEvent.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Events/SendListener.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Events/SimpleEventDispatcher.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Events/TransportChangeEvent.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Events/TransportChangeListener.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Events/TransportExceptionEvent.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Events/TransportExceptionListener.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/FailoverTransport.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/FileSpool.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/FileStream.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Filterable.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Image.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/InputByteStream.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/IoException.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/KeyCache.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/KeyCache/ArrayKeyCache.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/KeyCache/DiskKeyCache.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/KeyCache/KeyCacheInputStream.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/KeyCache/NullKeyCache.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/KeyCache/SimpleKeyCacheInputStream.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/LoadBalancedTransport.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/MailTransport.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mailer.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mailer/ArrayRecipientIterator.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mailer/RecipientIterator.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Message.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/Attachment.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/CharsetObserver.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/ContentEncoder.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/ContentEncoder/Base64ContentEncoder.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/ContentEncoder/PlainContentEncoder.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/ContentEncoder/QpContentEncoder.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/EmbeddedFile.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/EncodingObserver.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/Header.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/HeaderEncoder.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/HeaderEncoder/Base64HeaderEncoder.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/HeaderEncoder/QpHeaderEncoder.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/HeaderFactory.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/HeaderSet.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/Headers/AbstractHeader.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/Headers/DateHeader.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/Headers/IdentificationHeader.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/Headers/MailboxHeader.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/Headers/ParameterizedHeader.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/Headers/PathHeader.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/Headers/UnstructuredHeader.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/Message.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/MimeEntity.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/MimePart.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/ParameterizedHeader.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/SimpleHeaderFactory.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/SimpleHeaderSet.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/SimpleMessage.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Mime/SimpleMimeEntity.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/MimePart.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/NullTransport.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/OutputByteStream.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/AntiFloodPlugin.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/BandwidthMonitorPlugin.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/BlackholePlugin.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/Decorator/Replacements.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/DecoratorPlugin.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/Logger.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/LoggerPlugin.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/Loggers/ArrayLogger.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/Loggers/EchoLogger.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/Pop/Pop3Connection.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/Pop/Pop3Exception.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/PopBeforeSmtpPlugin.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/RedirectingPlugin.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/Reporter.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/ReporterPlugin.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/Reporters/HitReporter.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/Reporters/HtmlReporter.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/Sleeper.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/ThrottlerPlugin.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Plugins/Timer.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Preferences.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/ReplacementFilterFactory.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/RfcComplianceException.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/SendmailTransport.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/SmtpTransport.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Spool.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/SpoolTransport.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/StreamFilter.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/StreamFilters/ByteArrayReplacementFilter.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/StreamFilters/StringReplacementFilter.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/StreamFilters/StringReplacementFilterFactory.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/SwiftException.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport/AbstractSmtpTransport.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport/Esmtp/Auth/CramMd5Authenticator.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport/Esmtp/Auth/LoginAuthenticator.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport/Esmtp/Auth/PlainAuthenticator.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport/Esmtp/AuthHandler.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport/Esmtp/Authenticator.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport/EsmtpHandler.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport/EsmtpTransport.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport/FailoverTransport.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport/IoBuffer.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport/LoadBalancedTransport.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport/MailInvoker.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport/MailTransport.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport/NullTransport.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport/SendmailTransport.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport/SimpleMailInvoker.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport/SmtpAgent.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport/SpoolTransport.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/Transport/StreamBuffer.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift/TransportException.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/dependency_maps/cache_deps.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/dependency_maps/mime_deps.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/dependency_maps/transport_deps.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/mime_types.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/preferences.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/swift_init.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/swift_required.php delete mode 100644 lib/vendor/symfony/lib/vendor/swiftmailer/swift_required_pear.php create mode 100644 lib/vendor/symfony/lib/widget/sfWidgetFormInputFileMulti.class.php create mode 100644 lib/vendor/symfony/lib/widget/sfWidgetFormInputRead.class.php delete mode 100644 lib/vendor/symfony/lib/widget/sfWidgetFormSchemaForEach.class.php create mode 100644 lib/vendor/symfony/lib/yaml/sfYaml.class.php delete mode 100644 lib/vendor/symfony/lib/yaml/sfYaml.php create mode 100644 lib/vendor/symfony/lib/yaml/sfYamlDumper.class.php delete mode 100644 lib/vendor/symfony/lib/yaml/sfYamlDumper.php create mode 100644 lib/vendor/symfony/lib/yaml/sfYamlInline.class.php delete mode 100644 lib/vendor/symfony/lib/yaml/sfYamlInline.php create mode 100644 lib/vendor/symfony/lib/yaml/sfYamlParser.class.php delete mode 100644 lib/vendor/symfony/lib/yaml/sfYamlParser.php create mode 100644 lib/vendor/symfony/package.xml.tmpl create mode 100644 lib/vendor/symfony/polyfill-ctype/Ctype.php create mode 100644 lib/vendor/symfony/polyfill-ctype/LICENSE create mode 100644 lib/vendor/symfony/polyfill-ctype/README.md create mode 100644 lib/vendor/symfony/polyfill-ctype/bootstrap.php create mode 100644 lib/vendor/symfony/polyfill-ctype/composer.json create mode 100644 lib/vendor/symfony/polyfill-mbstring/LICENSE create mode 100644 lib/vendor/symfony/polyfill-mbstring/Mbstring.php create mode 100644 lib/vendor/symfony/polyfill-mbstring/README.md create mode 100644 lib/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php create mode 100644 lib/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php create mode 100644 lib/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php create mode 100644 lib/vendor/symfony/polyfill-mbstring/bootstrap.php create mode 100644 lib/vendor/symfony/polyfill-mbstring/composer.json create mode 100644 lib/vendor/symfony/process/.gitignore create mode 100644 lib/vendor/symfony/process/CHANGELOG.md create mode 100644 lib/vendor/symfony/process/Exception/ExceptionInterface.php create mode 100644 lib/vendor/symfony/process/Exception/InvalidArgumentException.php create mode 100644 lib/vendor/symfony/process/Exception/LogicException.php create mode 100644 lib/vendor/symfony/process/Exception/ProcessFailedException.php create mode 100644 lib/vendor/symfony/process/Exception/ProcessSignaledException.php create mode 100644 lib/vendor/symfony/process/Exception/ProcessTimedOutException.php create mode 100644 lib/vendor/symfony/process/Exception/RuntimeException.php create mode 100644 lib/vendor/symfony/process/ExecutableFinder.php create mode 100644 lib/vendor/symfony/process/InputStream.php create mode 100644 lib/vendor/symfony/process/LICENSE create mode 100644 lib/vendor/symfony/process/PhpExecutableFinder.php create mode 100644 lib/vendor/symfony/process/PhpProcess.php create mode 100644 lib/vendor/symfony/process/Pipes/AbstractPipes.php create mode 100644 lib/vendor/symfony/process/Pipes/PipesInterface.php create mode 100644 lib/vendor/symfony/process/Pipes/UnixPipes.php create mode 100644 lib/vendor/symfony/process/Pipes/WindowsPipes.php create mode 100644 lib/vendor/symfony/process/Process.php create mode 100644 lib/vendor/symfony/process/ProcessUtils.php create mode 100644 lib/vendor/symfony/process/README.md create mode 100644 lib/vendor/symfony/process/Tests/ExecutableFinderTest.php create mode 100644 lib/vendor/symfony/process/Tests/KillableProcessWithOutput.php create mode 100644 lib/vendor/symfony/process/Tests/NonStopableProcess.php create mode 100644 lib/vendor/symfony/process/Tests/PhpExecutableFinderTest.php create mode 100644 lib/vendor/symfony/process/Tests/PhpProcessTest.php create mode 100644 lib/vendor/symfony/process/Tests/PipeStdinInStdoutStdErrStreamSelect.php create mode 100644 lib/vendor/symfony/process/Tests/ProcessFailedExceptionTest.php create mode 100644 lib/vendor/symfony/process/Tests/ProcessTest.php create mode 100644 lib/vendor/symfony/process/Tests/SignalListener.php create mode 100644 lib/vendor/symfony/process/composer.json create mode 100644 lib/vendor/symfony/process/phpunit.xml.dist create mode 100644 lib/vendor/symfony/test/bin/coverage.php create mode 100644 lib/vendor/symfony/test/bin/loc.php create mode 100644 lib/vendor/symfony/test/bootstrap/functional.php create mode 100644 lib/vendor/symfony/test/bootstrap/task.php create mode 100644 lib/vendor/symfony/test/bootstrap/unit.php create mode 100644 lib/vendor/symfony/test/functional/authTest.php create mode 100644 lib/vendor/symfony/test/functional/autoloadTest.php create mode 100644 lib/vendor/symfony/test/functional/cacheTest.php create mode 100644 lib/vendor/symfony/test/functional/escapingTest.php create mode 100644 lib/vendor/symfony/test/functional/filterTest.php rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat => test/functional/fixtures/apps/cache}/config/app.yml (100%) create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/config/cache.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/config/cacheConfiguration.class.php rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat => test/functional/fixtures/apps/cache}/config/factories.yml (100%) rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat => test/functional/fixtures/apps/cache}/config/filters.yml (100%) rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat => test/functional/fixtures/apps/cache}/config/routing.yml (100%) rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat => test/functional/fixtures/apps/cache}/config/security.yml (100%) create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/config/settings.yml rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat => test/functional/fixtures/apps/cache}/config/view.yml (100%) rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat => test/functional/fixtures/apps/cache}/lib/myUser.class.php (100%) create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/actions/components.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/config/cache.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/data/ok48.png create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/_anotherCacheablePartial.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/_cacheableComponent.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/_cacheablePartial.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/_component.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/_contextualCacheableComponent.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/_contextualCacheablePartial.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/_contextualComponent.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/_contextualPartial.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/_partial.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/actionSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/anotherPartialSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/componentSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/imageSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/indexSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/listSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/multiBisSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/multiSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/pageSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/partialSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/cache/templates/specificCacheKeySuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/httpcache/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/httpcache/config/cache.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/httpcache/templates/indexSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/nocache/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/nocache/config/cache.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/modules/nocache/templates/indexSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/templates/image.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/cache/templates/layout.php rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/crud => test/functional/fixtures/apps/frontend}/config/app.yml (100%) rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat => test/functional/fixtures/apps/frontend}/config/cache.yml (100%) create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/config/dirmyconfig/myconfig.yml rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/crud => test/functional/fixtures/apps/frontend}/config/factories.yml (100%) create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/config/filters.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/config/frontendConfiguration.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/config/routing.yml rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/crud => test/functional/fixtures/apps/frontend}/config/security.yml (100%) create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/config/services.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/config/settings.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/config/view.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/lib/myAppsFrontendLibClass.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/lib/myAutoload.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/lib/myAutoloadedClass.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/lib/myFilter.class.php rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/crud => test/functional/fixtures/apps/frontend}/lib/myUser.class.php (100%) create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/assetInclusion/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/assetInclusion/config/view.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/assetInclusion/templates/indexSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/auth/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/auth/templates/basicSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/autoload/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/autoload/lib/myAppsFrontendModulesAutoloadLib.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/autoload/templates/indexSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/autoload/templates/myAutoloadSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/browser/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/browser/templates/redirectTarget1Success.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/browser/templates/templateCustomCustomSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/browser/templates/templateCustomSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/configFiltersSimpleFilter/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/configFiltersSimpleFilter/config/filters.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/configFiltersSimpleFilter/lib/configFiltersSimpleFilterFilter.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/configFiltersSimpleFilter/templates/indexSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/configModuleDisabled/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/configModuleDisabled/config/module.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/configModuleDisabled/templates/indexSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/configSecurityIsSecure/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/configSecurityIsSecure/config/security.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/configSecurityIsSecure/templates/indexSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/configSecurityIsSecureAction/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/configSecurityIsSecureAction/config/security.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/configSecurityIsSecureAction/templates/indexSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/configSettingsMaxForwards/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/configSettingsMaxForwards/templates/indexSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/configViewHasLayout/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/configViewHasLayout/config/view.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/configViewHasLayout/templates/withoutLayoutSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/cookie/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/escaping/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/escaping/templates/_partial1.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/escaping/templates/_partial2.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/escaping/templates/indexSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/exception/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/filter/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/format/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/format/templates/_js_header.js.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/format/templates/indexSuccess.css.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/format/templates/indexSuccess.iphone.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/format/templates/indexSuccess.js.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/format/templates/indexSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/format/templates/indexSuccess.xml.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/format/templates/jsSuccess.js.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/notfound/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/presentation/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/presentation/templates/fooSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/presentation/templates/indexSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/renderText/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/sfConfigPlugin/config/dirmyconfig/myconfig.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/sfConfigPlugin/config/filters.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/sfConfigPlugin/config/view.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/view/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/view/config/view.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/view/templates/fooSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/view/templates/imageSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/modules/view/templates/plainSuccess.php rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/backend_compat/templates/layout.php => test/functional/fixtures/apps/frontend/templates/layout.iphone.php} (100%) rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/crud => test/functional/fixtures/apps/frontend}/templates/layout.php (100%) create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/frontend/templates/layout.xml.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/i18n/config/app.yml rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/crud => test/functional/fixtures/apps/i18n}/config/cache.yml (100%) rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend => test/functional/fixtures/apps/i18n}/config/factories.yml (100%) create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/i18n/config/filters.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/i18n/config/i18nConfiguration.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/i18n/config/routing.yml rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend => test/functional/fixtures/apps/i18n}/config/security.yml (100%) create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/i18n/config/settings.yml rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/crud => test/functional/fixtures/apps/i18n}/config/view.yml (100%) create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/i18n/i18n/messages.fr.xml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/i18n/i18n/other.fr.xml rename lib/vendor/symfony/{lib/plugins/sfPropelPlugin/test/functional/fixtures/apps/frontend => test/functional/fixtures/apps/i18n}/lib/myUser.class.php (100%) create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/i18n/modules/i18n/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/i18n/modules/i18n/i18n/custom.fr.xml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/i18n/modules/i18n/i18n/messages.fr.xml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/i18n/modules/i18n/i18n/other.fr.xml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/i18n/modules/i18n/lib/I18nCustomCatalogueForm.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/i18n/modules/i18n/lib/I18nForm.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/i18n/modules/i18n/templates/i18nFormSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/i18n/modules/i18n/templates/indexSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/i18n/modules/sfI18NPlugin/i18n/messages.fr.xml create mode 100644 lib/vendor/symfony/test/functional/fixtures/apps/i18n/templates/layout.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/config/ProjectConfiguration.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/config/databases.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/config/dirmyconfig/myconfig.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/config/filters.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/config/properties.ini create mode 100644 lib/vendor/symfony/test/functional/fixtures/config/services.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/config/view.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/data/environment.migrated create mode 100644 lib/vendor/symfony/test/functional/fixtures/lib/ExtendMe.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/lib/form/BaseForm.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/lib/myLibClass.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfAutoloadPlugin/config/NotInLib.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfAutoloadPlugin/config/autoload.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfAutoloadPlugin/config/sfAutoloadPluginConfiguration.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfAutoloadPlugin/lib/BaseExtendMe.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfAutoloadPlugin/lib/ExtendMe.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfAutoloadPlugin/lib/vendor/ExcludedFromAutoload.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfAutoloadPlugin/modules/autoloadPlugin/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfAutoloadPlugin/modules/autoloadPlugin/lib/myPluginsSfAutoloadPluginModulesAutoloadPluginLib.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfAutoloadPlugin/modules/autoloadPlugin/templates/indexSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfAutoloadPlugin/test/functional/BarFunctionalTest.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfAutoloadPlugin/test/functional/FooFunctionalTest.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfAutoloadPlugin/test/functional/nested/NestedFunctionalTest.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfAutoloadPlugin/test/unit/BarUnitTest.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfAutoloadPlugin/test/unit/FooUnitTest.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfAutoloadPlugin/test/unit/nested/NestedUnitTest.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfConfigPlugin/config/dirmyconfig/myconfig.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfConfigPlugin/config/filters.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfConfigPlugin/config/services.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfConfigPlugin/config/view.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfConfigPlugin/modules/sfConfigPlugin/config/dirmyconfig/myconfig.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfConfigPlugin/modules/sfConfigPlugin/config/filters.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfConfigPlugin/modules/sfConfigPlugin/config/view.yml create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfI18NPlugin/i18n/messages.fr.xml create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfI18NPlugin/modules/sfI18NPlugin/actions/actions.class.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfI18NPlugin/modules/sfI18NPlugin/i18n/messages.fr.xml create mode 100644 lib/vendor/symfony/test/functional/fixtures/plugins/sfI18NPlugin/modules/sfI18NPlugin/templates/indexSuccess.php create mode 100644 lib/vendor/symfony/test/functional/fixtures/symfony create mode 100644 lib/vendor/symfony/test/functional/formatTest.php create mode 100644 lib/vendor/symfony/test/functional/genericTest.php create mode 100644 lib/vendor/symfony/test/functional/httpcacheTest.php create mode 100644 lib/vendor/symfony/test/functional/i18nFormTest.php create mode 100644 lib/vendor/symfony/test/functional/i18nTest.php create mode 100644 lib/vendor/symfony/test/functional/prodTest.php create mode 100644 lib/vendor/symfony/test/functional/sfTestBrowserTest.php create mode 100644 lib/vendor/symfony/test/other/fixtures/factories.yml create mode 100644 lib/vendor/symfony/test/other/fixtures/task/myPluginTask.class.php create mode 100644 lib/vendor/symfony/test/other/fixtures/test/functional/result-harness.txt create mode 100644 lib/vendor/symfony/test/other/fixtures/test/functional/result.txt create mode 100644 lib/vendor/symfony/test/other/fixtures/test/result-harness.txt create mode 100644 lib/vendor/symfony/test/other/fixtures/test/unit/result-harness.txt create mode 100644 lib/vendor/symfony/test/other/fixtures/test/unit/result.txt create mode 100644 lib/vendor/symfony/test/other/fixtures/test/unit/testTest.php create mode 100644 lib/vendor/symfony/test/other/tasksTest.php create mode 100644 lib/vendor/symfony/test/unit/action/sfComponentTest.php create mode 100644 lib/vendor/symfony/test/unit/addon/sfPagerTest.php create mode 100644 lib/vendor/symfony/test/unit/autoload/sfCoreAutoloadTest.php create mode 100644 lib/vendor/symfony/test/unit/autoload/sfSimpleAutoloadTest.php create mode 100644 lib/vendor/symfony/test/unit/cache/sfAPCCacheTest.php create mode 100644 lib/vendor/symfony/test/unit/cache/sfCacheDriverTests.class.php create mode 100644 lib/vendor/symfony/test/unit/cache/sfCacheTest.php create mode 100644 lib/vendor/symfony/test/unit/cache/sfEAcceleratorCacheTest.php create mode 100644 lib/vendor/symfony/test/unit/cache/sfFileCacheTest.php create mode 100644 lib/vendor/symfony/test/unit/cache/sfFunctionCacheTest.php create mode 100644 lib/vendor/symfony/test/unit/cache/sfMemcacheCacheTest.php create mode 100644 lib/vendor/symfony/test/unit/cache/sfNoCacheTest.php create mode 100644 lib/vendor/symfony/test/unit/cache/sfSQLiteCacheTest.php create mode 100644 lib/vendor/symfony/test/unit/cache/sfXCacheCacheTest.php create mode 100644 lib/vendor/symfony/test/unit/command/sfCommandArgumentSetTest.php create mode 100644 lib/vendor/symfony/test/unit/command/sfCommandArgumentTest.php create mode 100644 lib/vendor/symfony/test/unit/command/sfCommandManagerTest.php create mode 100644 lib/vendor/symfony/test/unit/command/sfCommandOptionSetTest.php create mode 100644 lib/vendor/symfony/test/unit/command/sfCommandOptionTest.php create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfCompileConfigHandler/simple.yml create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfDefineEnvironmentConfigHandler/prefix_all.yml create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfDefineEnvironmentConfigHandler/prefix_default.yml create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfDefineEnvironmentConfigHandler/prefix_result.php create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfFilterConfigHandler/condition.yml create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfFilterConfigHandler/default_filters.yml create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfFilterConfigHandler/disable.yml create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfFilterConfigHandler/filters.yml create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfFilterConfigHandler/no_class.yml create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfFilterConfigHandler/no_execution.yml create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfFilterConfigHandler/no_rendering.yml create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfFilterConfigHandler/not_disabled.yml create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfFilterConfigHandler/result.php create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfGeneratorConfigHandler/empty.yml create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfGeneratorConfigHandler/no_generator_class.yml create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfGeneratorConfigHandler/no_generator_section.yml create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfGeneratorConfigHandler/root_edit_section.yml create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfGeneratorConfigHandler/root_fields_section.yml create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfGeneratorConfigHandler/root_list_section.yml create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfSimpleYamlConfigHandler/config.yml create mode 100644 lib/vendor/symfony/test/unit/config/fixtures/sfSimpleYamlConfigHandler/config_bis.yml create mode 100644 lib/vendor/symfony/test/unit/config/sfCompileConfigHandlerTest.php create mode 100644 lib/vendor/symfony/test/unit/config/sfConfigHandlerTest.php create mode 100644 lib/vendor/symfony/test/unit/config/sfConfigTest.php create mode 100644 lib/vendor/symfony/test/unit/config/sfDefineEnvironmentConfigHandlerTest.php create mode 100644 lib/vendor/symfony/test/unit/config/sfFilterConfigHandlerTest.php create mode 100644 lib/vendor/symfony/test/unit/config/sfGeneratorConfigHandlerTest.php create mode 100644 lib/vendor/symfony/test/unit/config/sfPluginConfigurationTest.php create mode 100644 lib/vendor/symfony/test/unit/config/sfProjectConfigurationTest.php create mode 100644 lib/vendor/symfony/test/unit/config/sfSimpleYamlConfigHandlerTest.php create mode 100644 lib/vendor/symfony/test/unit/config/sfViewConfigHandlerTest.php create mode 100644 lib/vendor/symfony/test/unit/config/sfYamlConfigHandlerTest.php create mode 100644 lib/vendor/symfony/test/unit/controller/sfControllerTest.php create mode 100644 lib/vendor/symfony/test/unit/controller/sfWebControllerTest.php create mode 100644 lib/vendor/symfony/test/unit/database/sfDatabaseTest.php create mode 100644 lib/vendor/symfony/test/unit/debug/sfDebugTest.php create mode 100644 lib/vendor/symfony/test/unit/debug/sfTimerTest.php create mode 100644 lib/vendor/symfony/test/unit/debug/sfWebDebugTest.php create mode 100644 lib/vendor/symfony/test/unit/escaper/sfOutputEscaperArrayDecoratorTest.php create mode 100644 lib/vendor/symfony/test/unit/escaper/sfOutputEscaperObjectDecoratorTest.php create mode 100644 lib/vendor/symfony/test/unit/escaper/sfOutputEscaperSafeTest.php create mode 100644 lib/vendor/symfony/test/unit/escaper/sfOutputEscaperTest.php create mode 100644 lib/vendor/symfony/test/unit/event/sfEventDispatcherTest.php create mode 100644 lib/vendor/symfony/test/unit/event/sfEventTest.php create mode 100644 lib/vendor/symfony/test/unit/exception/sfExceptionsTest.php create mode 100644 lib/vendor/symfony/test/unit/filter/sfFilterTest.php create mode 100644 lib/vendor/symfony/test/unit/form/addon/sfFormSymfonyTest.php create mode 100644 lib/vendor/symfony/test/unit/form/sfFormFieldSchemaTest.php create mode 100644 lib/vendor/symfony/test/unit/form/sfFormFieldTest.php create mode 100644 lib/vendor/symfony/test/unit/form/sfFormTest.php create mode 100644 lib/vendor/symfony/test/unit/generator/sfGeneratorTest.php create mode 100644 lib/vendor/symfony/test/unit/generator/sfModelGeneratorConfigurationFieldTest.php create mode 100644 lib/vendor/symfony/test/unit/helper/AssetHelperTest.php create mode 100644 lib/vendor/symfony/test/unit/helper/DateHelperTest.php create mode 100644 lib/vendor/symfony/test/unit/helper/EscapingHelperTest.php create mode 100644 lib/vendor/symfony/test/unit/helper/JavascriptBaseHelperTest.php create mode 100644 lib/vendor/symfony/test/unit/helper/NumberHelperTest.php create mode 100644 lib/vendor/symfony/test/unit/helper/PartialHelperTest.php create mode 100644 lib/vendor/symfony/test/unit/helper/TagHelperTest.php create mode 100644 lib/vendor/symfony/test/unit/helper/TestObject.php create mode 100644 lib/vendor/symfony/test/unit/helper/TextHelperTest.php create mode 100644 lib/vendor/symfony/test/unit/helper/UrlHelperTest.php create mode 100644 lib/vendor/symfony/test/unit/helper/fixtures/tiny_mce.js create mode 100644 lib/vendor/symfony/test/unit/i18n/dataTest.php create mode 100644 lib/vendor/symfony/test/unit/i18n/extract/sfI18nExtractTest.php create mode 100644 lib/vendor/symfony/test/unit/i18n/extract/sfI18nPhpExtractorTest.php create mode 100644 lib/vendor/symfony/test/unit/i18n/extract/sfI18nYamlGeneratorExtractorTest.php create mode 100644 lib/vendor/symfony/test/unit/i18n/extract/sfI18nYamlValidateExtractorTest.php create mode 100644 lib/vendor/symfony/test/unit/i18n/fixtures/messages.fr.xml create mode 100644 lib/vendor/symfony/test/unit/i18n/fixtures/messages.fr_BE.xml create mode 100644 lib/vendor/symfony/test/unit/i18n/fixtures/messages_bis.fr.xml create mode 100644 lib/vendor/symfony/test/unit/i18n/sfChoiceFormatTest.php create mode 100644 lib/vendor/symfony/test/unit/i18n/sfCultureInfoTest.php create mode 100644 lib/vendor/symfony/test/unit/i18n/sfI18NTest.php create mode 100644 lib/vendor/symfony/test/unit/i18n/sfMessageSourceTest.php create mode 100644 lib/vendor/symfony/test/unit/i18n/sfMessageSource_AggregateTest.php create mode 100644 lib/vendor/symfony/test/unit/i18n/sfMessageSource_FileTest.php create mode 100644 lib/vendor/symfony/test/unit/i18n/sfMessageSource_SQLiteTest.php create mode 100644 lib/vendor/symfony/test/unit/i18n/sfMessageSource_XLIFFTest.php create mode 100644 lib/vendor/symfony/test/unit/i18n/sfNumberFormatInfoTest.php create mode 100644 lib/vendor/symfony/test/unit/log/sfAggregateLoggerTest.php create mode 100644 lib/vendor/symfony/test/unit/log/sfConsoleLoggerTest.php create mode 100644 lib/vendor/symfony/test/unit/log/sfFileLoggerTest.php create mode 100644 lib/vendor/symfony/test/unit/log/sfLoggerTest.php create mode 100644 lib/vendor/symfony/test/unit/log/sfLoggerWrapperTest.php create mode 100644 lib/vendor/symfony/test/unit/log/sfStreamLoggerTest.php create mode 100644 lib/vendor/symfony/test/unit/log/sfVarLoggerTest.php create mode 100644 lib/vendor/symfony/test/unit/log/sfWebDebugLoggerTest.php create mode 100644 lib/vendor/symfony/test/unit/mailer/fixtures/TestMailMessage.class.php create mode 100644 lib/vendor/symfony/test/unit/mailer/fixtures/TestMailerTransport.class.php create mode 100644 lib/vendor/symfony/test/unit/mailer/fixtures/TestSpool.class.php create mode 100644 lib/vendor/symfony/test/unit/mailer/sfMailerTest.php create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/REST/p/sffooplugin/info.xml create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/REST/p/sftestplugin/info.xml create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/REST/r/sffooplugin/1.0.0.xml create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/REST/r/sffooplugin/allreleases.xml create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/REST/r/sffooplugin/deps.1.0.0.txt create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/REST/r/sftestplugin/1.0.0.xml create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/REST/r/sftestplugin/1.0.3.xml create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/REST/r/sftestplugin/1.0.4.xml create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/REST/r/sftestplugin/1.1.3.xml create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/REST/r/sftestplugin/1.1.4.xml create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/REST/r/sftestplugin/allreleases.xml create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/REST/r/sftestplugin/deps.1.0.0.txt create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/REST/r/sftestplugin/deps.1.0.3.txt create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/REST/r/sftestplugin/deps.1.0.4.txt create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/REST/r/sftestplugin/deps.1.1.3.txt create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/REST/r/sftestplugin/deps.1.1.4.txt create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/channel.xml create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/get/sfFooPlugin/sfFooPlugin-1.0.0.tgz create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/get/sfTestPlugin/sfTestPlugin-1.0.0.tgz create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/get/sfTestPlugin/sfTestPlugin-1.0.3.tgz create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/get/sfTestPlugin/sfTestPlugin-1.0.4.tgz create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/get/sfTestPlugin/sfTestPlugin-1.1.3.tgz create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/http/pear.example.com/get/sfTestPlugin/sfTestPlugin-1.1.4.tgz create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/sfFooPlugin/package.xml create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/sfFooPlugin/sfFooPlugin-1.0.0/VERSION create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/sfTestPlugin/sfTestPlugin-1.0.0/package.xml create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/sfTestPlugin/sfTestPlugin-1.0.0/sfTestPlugin-1.0.0/VERSION create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/sfTestPlugin/sfTestPlugin-1.0.3/package.xml create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/sfTestPlugin/sfTestPlugin-1.0.3/sfTestPlugin-1.0.3/VERSION create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/sfTestPlugin/sfTestPlugin-1.0.4/package.xml create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/sfTestPlugin/sfTestPlugin-1.0.4/sfTestPlugin-1.0.4/VERSION create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/sfTestPlugin/sfTestPlugin-1.1.3/package.xml create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/sfTestPlugin/sfTestPlugin-1.1.3/sfTestPlugin-1.1.3/VERSION create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/sfTestPlugin/sfTestPlugin-1.1.4/package.xml create mode 100644 lib/vendor/symfony/test/unit/plugin/fixtures/sfTestPlugin/sfTestPlugin-1.1.4/sfTestPlugin-1.1.4/VERSION create mode 100644 lib/vendor/symfony/test/unit/plugin/sfPearDownloaderTest.class.php create mode 100644 lib/vendor/symfony/test/unit/plugin/sfPearEnvironmentTest.php create mode 100644 lib/vendor/symfony/test/unit/plugin/sfPearRestPluginTest.php create mode 100644 lib/vendor/symfony/test/unit/plugin/sfPearRestTest.class.php create mode 100644 lib/vendor/symfony/test/unit/plugin/sfPluginManagerTest.php create mode 100644 lib/vendor/symfony/test/unit/plugin/sfPluginTestHelper.class.php create mode 100644 lib/vendor/symfony/test/unit/request/sfRequestTest.php create mode 100644 lib/vendor/symfony/test/unit/request/sfWebRequestTest.php create mode 100644 lib/vendor/symfony/test/unit/response/sfResponseTest.php create mode 100644 lib/vendor/symfony/test/unit/response/sfWebResponseTest.php create mode 100644 lib/vendor/symfony/test/unit/routing/fixtures/config_routing.yml.php create mode 100644 lib/vendor/symfony/test/unit/routing/sfObjectRouteCollectionTest.php create mode 100644 lib/vendor/symfony/test/unit/routing/sfObjectRouteTest.php create mode 100644 lib/vendor/symfony/test/unit/routing/sfPatternRoutingTest.php create mode 100644 lib/vendor/symfony/test/unit/routing/sfRequestRouteTest.php create mode 100644 lib/vendor/symfony/test/unit/routing/sfRouteTest.php create mode 100644 lib/vendor/symfony/test/unit/service/fixtures/containers/container10.php create mode 100644 lib/vendor/symfony/test/unit/service/fixtures/containers/container8.php create mode 100644 lib/vendor/symfony/test/unit/service/fixtures/containers/container9.php create mode 100644 lib/vendor/symfony/test/unit/service/fixtures/graphviz/services1.dot create mode 100644 lib/vendor/symfony/test/unit/service/fixtures/graphviz/services10-1.dot create mode 100644 lib/vendor/symfony/test/unit/service/fixtures/graphviz/services10.dot create mode 100644 lib/vendor/symfony/test/unit/service/fixtures/graphviz/services9.dot create mode 100644 lib/vendor/symfony/test/unit/service/fixtures/includes/classes.php create mode 100644 lib/vendor/symfony/test/unit/service/fixtures/includes/foo.php create mode 100644 lib/vendor/symfony/test/unit/service/fixtures/php/services1-1.php create mode 100644 lib/vendor/symfony/test/unit/service/fixtures/php/services1.php create mode 100644 lib/vendor/symfony/test/unit/service/fixtures/php/services8.php create mode 100644 lib/vendor/symfony/test/unit/service/fixtures/php/services9.php create mode 100644 lib/vendor/symfony/test/unit/service/fixtures/yaml/nonvalid1.yml create mode 100644 lib/vendor/symfony/test/unit/service/fixtures/yaml/nonvalid2.yml create mode 100644 lib/vendor/symfony/test/unit/service/fixtures/yaml/services1.yml create mode 100644 lib/vendor/symfony/test/unit/service/fixtures/yaml/services2.yml create mode 100644 lib/vendor/symfony/test/unit/service/fixtures/yaml/services3.yml create mode 100644 lib/vendor/symfony/test/unit/service/sfServiceContainerBuilderTest.php create mode 100644 lib/vendor/symfony/test/unit/service/sfServiceContainerDumperGraphvizTest.php create mode 100644 lib/vendor/symfony/test/unit/service/sfServiceContainerDumperPhpTest.php create mode 100644 lib/vendor/symfony/test/unit/service/sfServiceContainerDumperTest.php create mode 100644 lib/vendor/symfony/test/unit/service/sfServiceContainerLoaderArrayTest.php create mode 100644 lib/vendor/symfony/test/unit/service/sfServiceContainerLoaderTest.php create mode 100644 lib/vendor/symfony/test/unit/service/sfServiceContainerTest.php create mode 100644 lib/vendor/symfony/test/unit/service/sfServiceDefinitionTest.php create mode 100644 lib/vendor/symfony/test/unit/service/sfServiceParameterTest.php create mode 100644 lib/vendor/symfony/test/unit/service/sfServiceReferenceTest.php create mode 100644 lib/vendor/symfony/test/unit/sfContextMock.class.php create mode 100644 lib/vendor/symfony/test/unit/sfEventDispatcherTest.class.php create mode 100644 lib/vendor/symfony/test/unit/sfNoRouting.class.php create mode 100644 lib/vendor/symfony/test/unit/sfParameterHolderTest.class.php create mode 100644 lib/vendor/symfony/test/unit/storage/sfCacheSessionStorageTest.php create mode 100644 lib/vendor/symfony/test/unit/storage/sfMySQLStorageTest.php create mode 100644 lib/vendor/symfony/test/unit/storage/sfMySQLiStorageTest.php create mode 100644 lib/vendor/symfony/test/unit/storage/sfNoStorageTest.php create mode 100644 lib/vendor/symfony/test/unit/storage/sfPDOSessionStorageTest.php create mode 100644 lib/vendor/symfony/test/unit/storage/sfSessionStorageTest.php create mode 100644 lib/vendor/symfony/test/unit/storage/sfStorageTest.php create mode 100644 lib/vendor/symfony/test/unit/task/cache/sfCacheClearTaskTest.php create mode 100644 lib/vendor/symfony/test/unit/task/sfBaseTaskTest.php create mode 100644 lib/vendor/symfony/test/unit/task/sfFilesystemTest.php create mode 100644 lib/vendor/symfony/test/unit/task/sfTaskTest.php create mode 100644 lib/vendor/symfony/test/unit/test/limeTestTest.php create mode 100644 lib/vendor/symfony/test/unit/test/sfTestFunctionalTest.php create mode 100644 lib/vendor/symfony/test/unit/user/sfBasicSecurityUserTest.php create mode 100644 lib/vendor/symfony/test/unit/user/sfUserTest.php create mode 100644 lib/vendor/symfony/test/unit/util/fixtures/finder/FILE5.txt create mode 100644 lib/vendor/symfony/test/unit/util/fixtures/finder/dir1/dir2/dir3/file31 create mode 100644 lib/vendor/symfony/test/unit/util/fixtures/finder/dir1/dir2/dir4/file41 create mode 100644 lib/vendor/symfony/test/unit/util/fixtures/finder/dir1/dir2/file21.php create mode 100644 lib/vendor/symfony/test/unit/util/fixtures/finder/dir1/dir2/file22 create mode 100644 lib/vendor/symfony/test/unit/util/fixtures/finder/dir1/dir2/file23 create mode 100644 lib/vendor/symfony/test/unit/util/fixtures/finder/dir1/dir2/file24 create mode 100644 lib/vendor/symfony/test/unit/util/fixtures/finder/dir1/file11 create mode 100644 lib/vendor/symfony/test/unit/util/fixtures/finder/dir1/file12.php create mode 100644 lib/vendor/symfony/test/unit/util/fixtures/finder/dir1/file13 create mode 100644 lib/vendor/symfony/test/unit/util/fixtures/finder/file1 create mode 100644 lib/vendor/symfony/test/unit/util/fixtures/finder/file2.txt create mode 100644 lib/vendor/symfony/test/unit/util/fixtures/finder_permissions/secret/passwd create mode 100644 lib/vendor/symfony/test/unit/util/sfBrowserTest.php create mode 100644 lib/vendor/symfony/test/unit/util/sfCallableTest.php create mode 100644 lib/vendor/symfony/test/unit/util/sfClassManipulatorTest.php create mode 100644 lib/vendor/symfony/test/unit/util/sfContextTest.php create mode 100644 lib/vendor/symfony/test/unit/util/sfDomCssSelectorTest.php create mode 100644 lib/vendor/symfony/test/unit/util/sfFinderTest.php create mode 100644 lib/vendor/symfony/test/unit/util/sfInflectorTest.php create mode 100644 lib/vendor/symfony/test/unit/util/sfNamespacedParameterHolderTest.php create mode 100644 lib/vendor/symfony/test/unit/util/sfParameterHolderTest.php create mode 100644 lib/vendor/symfony/test/unit/util/sfToolkitTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/i18n/sfValidatorI18nChoiceCountryTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/i18n/sfValidatorI18nChoiceLanguageTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/i18n/sfValidatorI18nChoiceTimezoneTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorAndTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorBaseTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorBooleanTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorCSRFTokenTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorCallbackTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorChoiceTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorDateRangeTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorDateTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorDateTimeTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorDecoratorTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorEmailTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorEqualTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorErrorSchemaTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorErrorTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorFileMultiTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorFileTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorFromDescriptionTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorIntegerTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorIpTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorNumberTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorOrTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorPassTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorRegexTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorSchemaCompareTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorSchemaFilterTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorSchemaTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorStringTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorTimeTest.php create mode 100644 lib/vendor/symfony/test/unit/validator/sfValidatorUrlTest.php create mode 100644 lib/vendor/symfony/test/unit/view/sfViewCacheManagerTest.php create mode 100644 lib/vendor/symfony/test/unit/view/sfViewParameterHolderTest.php create mode 100644 lib/vendor/symfony/test/unit/view/sfViewTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/i18n/sfWidgetFormI18nChoiceCountryTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/i18n/sfWidgetFormI18nChoiceCurrencyTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/i18n/sfWidgetFormI18nChoiceLanguageTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/i18n/sfWidgetFormI18nChoiceTimezoneTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/i18n/sfWidgetFormI18nDateTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/i18n/sfWidgetFormI18nDateTimeTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/i18n/sfWidgetFormI18nTimeTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormChoiceTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormDateRangeTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormDateTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormDateTimeTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormFilterDateTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormFilterInputTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormInputCheckboxTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormInputFileEditableTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormInputFileMultiTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormInputFileTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormInputHiddenTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormInputPasswordTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormInputReadTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormInputTextTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormSchemaDecoratorTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormSchemaFormatterListTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormSchemaFormatterTableTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormSchemaFormatterTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormSchemaTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormSelectCheckboxTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormSelectManyTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormSelectRadioTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormSelectTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormTextareaTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetFormTimeTest.php create mode 100644 lib/vendor/symfony/test/unit/widget/sfWidgetTest.php create mode 100644 lib/vendor/symfony/test/unit/yaml/fixtures/YtsAnchorAlias.yml create mode 100644 lib/vendor/symfony/test/unit/yaml/fixtures/YtsBasicTests.yml create mode 100644 lib/vendor/symfony/test/unit/yaml/fixtures/YtsBlockMapping.yml create mode 100644 lib/vendor/symfony/test/unit/yaml/fixtures/YtsDocumentSeparator.yml create mode 100644 lib/vendor/symfony/test/unit/yaml/fixtures/YtsErrorTests.yml create mode 100644 lib/vendor/symfony/test/unit/yaml/fixtures/YtsFlowCollections.yml create mode 100644 lib/vendor/symfony/test/unit/yaml/fixtures/YtsFoldedScalars.yml create mode 100644 lib/vendor/symfony/test/unit/yaml/fixtures/YtsNullsAndEmpties.yml create mode 100644 lib/vendor/symfony/test/unit/yaml/fixtures/YtsSpecificationExamples.yml create mode 100644 lib/vendor/symfony/test/unit/yaml/fixtures/YtsTypeTransfers.yml create mode 100644 lib/vendor/symfony/test/unit/yaml/fixtures/index.yml create mode 100644 lib/vendor/symfony/test/unit/yaml/fixtures/sfComments.yml create mode 100644 lib/vendor/symfony/test/unit/yaml/fixtures/sfMergeKey.yml create mode 100644 lib/vendor/symfony/test/unit/yaml/fixtures/sfObjects.yml create mode 100644 lib/vendor/symfony/test/unit/yaml/fixtures/sfQuotes.yml create mode 100644 lib/vendor/symfony/test/unit/yaml/fixtures/sfTests.yml create mode 100644 lib/vendor/symfony/test/unit/yaml/sfYamlDumperTest.php create mode 100644 lib/vendor/symfony/test/unit/yaml/sfYamlInlineTest.php create mode 100644 lib/vendor/symfony/test/unit/yaml/sfYamlParserTest.php create mode 100644 lib/vendor/symfony/yaml/.gitignore create mode 100644 lib/vendor/symfony/yaml/CHANGELOG.md create mode 100644 lib/vendor/symfony/yaml/Command/LintCommand.php create mode 100644 lib/vendor/symfony/yaml/Dumper.php create mode 100644 lib/vendor/symfony/yaml/Escaper.php create mode 100644 lib/vendor/symfony/yaml/Exception/DumpException.php create mode 100644 lib/vendor/symfony/yaml/Exception/ExceptionInterface.php create mode 100644 lib/vendor/symfony/yaml/Exception/ParseException.php create mode 100644 lib/vendor/symfony/yaml/Exception/RuntimeException.php create mode 100644 lib/vendor/symfony/yaml/Inline.php create mode 100644 lib/vendor/symfony/yaml/LICENSE create mode 100644 lib/vendor/symfony/yaml/Parser.php create mode 100644 lib/vendor/symfony/yaml/README.md create mode 100644 lib/vendor/symfony/yaml/Tag/TaggedValue.php create mode 100644 lib/vendor/symfony/yaml/Tests/Command/LintCommandTest.php create mode 100644 lib/vendor/symfony/yaml/Tests/DumperTest.php create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/YtsAnchorAlias.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/YtsBasicTests.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/YtsBlockMapping.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/YtsDocumentSeparator.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/YtsErrorTests.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/YtsFlowCollections.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/YtsFoldedScalars.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/YtsNullsAndEmpties.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/YtsSpecificationExamples.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/YtsTypeTransfers.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/arrow.gif create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/booleanMappingKeys.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/escapedCharacters.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/index.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/multiple_lines_as_literal_block.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/multiple_lines_as_literal_block_leading_space_in_first_line.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/nonStringKeys.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/not_readable.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/nullMappingKey.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/numericMappingKeys.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/sfComments.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/sfCompact.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/sfMergeKey.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/sfObjects.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/sfQuotes.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/sfTests.yml create mode 100644 lib/vendor/symfony/yaml/Tests/Fixtures/unindentedCollections.yml create mode 100644 lib/vendor/symfony/yaml/Tests/InlineTest.php create mode 100644 lib/vendor/symfony/yaml/Tests/ParseExceptionTest.php create mode 100644 lib/vendor/symfony/yaml/Tests/ParserTest.php create mode 100644 lib/vendor/symfony/yaml/Tests/YamlTest.php create mode 100644 lib/vendor/symfony/yaml/Unescaper.php create mode 100644 lib/vendor/symfony/yaml/Yaml.php create mode 100644 lib/vendor/symfony/yaml/composer.json create mode 100644 lib/vendor/symfony/yaml/phpunit.xml.dist create mode 100644 web/language_files/.gitignore diff --git a/config/ProjectConfiguration.class.php b/config/ProjectConfiguration.class.php index 56bb991..721185d 100644 --- a/config/ProjectConfiguration.class.php +++ b/config/ProjectConfiguration.class.php @@ -1,7 +1,6 @@ =5.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4-dev" + } + }, + "autoload": { + "psr-0": { + "Doctrine_": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1-or-later" + ], + "authors": [ + { + "name": "Konsta Vesterinen", + "email": "kvesteri@cc.hut.fi" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Doctrine1 Contributors", + "homepage": "https://github.com/FriendsOfSymfony1/doctrine1/graphs/contributors" + } + ], + "description": "PHP Database ORM for Symfony1. Do NOT use for new projects: please move to a newest Symfony release and Doctrine2", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "database", + "doctrine1", + "orm", + "symfony1" + ], + "time": "2020-07-10T03:00:50+00:00" + }, + { + "name": "lexpress/symfony1", + "version": "dev-ohrm", + "source": { + "type": "git", + "url": "https://github.com/orangehrm/symfony1.git", + "reference": "38e9b72dac7e9b92453796cc00194709e21d95b8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/orangehrm/symfony1/zipball/38e9b72dac7e9b92453796cc00194709e21d95b8", + "reference": "38e9b72dac7e9b92453796cc00194709e21d95b8", + "shasum": "" + }, + "require": { + "oomphinc/composer-installers-extender": "^1.1", + "swiftmailer/swiftmailer": "~5.2" + }, + "require-dev": { + "psr/log": "*" + }, + "suggest": { + "lexpress/doctrine1": "Doctrine plugin", + "propel/sf-propel-o-r-m-plugin": "Propel plugin", + "psr/log": "Psr logger" + }, + "bin": [ + "data/bin/symfony" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.5-dev" + } + }, + "autoload": { + "files": [ + "autoload.php" + ] + }, + "license": [ + "MIT" + ], + "description": "Fork of symfony 1.4 with dic, form enhancements, latest swiftmailer and better performance", + "support": { + "source": "https://github.com/orangehrm/symfony1/tree/ohrm" + }, + "time": "2020-04-21T02:58:39+00:00" + }, + { + "name": "oomphinc/composer-installers-extender", + "version": "v1.1.2", + "source": { + "type": "git", + "url": "https://github.com/oomphinc/composer-installers-extender.git", + "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56", + "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0", + "composer/installers": "^1.0" + }, + "type": "composer-plugin", + "extra": { + "class": "OomphInc\\ComposerInstallersExtender\\Plugin" + }, + "autoload": { + "psr-4": { + "OomphInc\\ComposerInstallersExtender\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Stephen Beemsterboer", + "email": "stephen@oomphinc.com", + "homepage": "https://github.com/balbuf" + } + ], + "description": "Extend the composer/installers plugin to accept any arbitrary package type.", + "homepage": "http://www.oomphinc.com/", + "time": "2017-03-31T16:57:39+00:00" + }, + { + "name": "swiftmailer/swiftmailer", + "version": "v5.4.12", + "source": { + "type": "git", + "url": "https://github.com/swiftmailer/swiftmailer.git", + "reference": "181b89f18a90f8925ef805f950d47a7190e9b950" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/181b89f18a90f8925ef805f950d47a7190e9b950", + "reference": "181b89f18a90f8925ef805f950d47a7190e9b950", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "require-dev": { + "mockery/mockery": "~0.9.1", + "symfony/phpunit-bridge": "~3.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.4-dev" + } + }, + "autoload": { + "files": [ + "lib/swift_required.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Corbyn" + }, + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + } + ], + "description": "Swiftmailer, free feature-rich PHP mailer", + "homepage": "https://swiftmailer.symfony.com", + "keywords": [ + "email", + "mail", + "mailer" + ], + "time": "2018-07-31T09:26:32+00:00" + } + ], + "packages-dev": [], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": { + "lexpress/symfony1": 20, + "lexpress/doctrine1": 20 + }, + "prefer-stable": false, + "prefer-lowest": false, + "platform": [], + "platform-dev": [] +} diff --git a/lib/model/Doctrine.php b/lib/model/Doctrine.php new file mode 100644 index 0000000..83e9439 --- /dev/null +++ b/lib/model/Doctrine.php @@ -0,0 +1,11 @@ + + * Jordi Boggiano + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Composer\Autoload; + +/** + * ClassLoader implements a PSR-0, PSR-4 and classmap class loader. + * + * $loader = new \Composer\Autoload\ClassLoader(); + * + * // register classes with namespaces + * $loader->add('Symfony\Component', __DIR__.'/component'); + * $loader->add('Symfony', __DIR__.'/framework'); + * + * // activate the autoloader + * $loader->register(); + * + * // to enable searching the include path (eg. for PEAR packages) + * $loader->setUseIncludePath(true); + * + * In this example, if you try to use a class in the Symfony\Component + * namespace or one of its children (Symfony\Component\Console for instance), + * the autoloader will first look for the class under the component/ + * directory, and it will then fallback to the framework/ directory if not + * found before giving up. + * + * This class is loosely based on the Symfony UniversalClassLoader. + * + * @author Fabien Potencier + * @author Jordi Boggiano + * @see http://www.php-fig.org/psr/psr-0/ + * @see http://www.php-fig.org/psr/psr-4/ + */ +class ClassLoader +{ + // PSR-4 + private $prefixLengthsPsr4 = array(); + private $prefixDirsPsr4 = array(); + private $fallbackDirsPsr4 = array(); + + // PSR-0 + private $prefixesPsr0 = array(); + private $fallbackDirsPsr0 = array(); + + private $useIncludePath = false; + private $classMap = array(); + private $classMapAuthoritative = false; + private $missingClasses = array(); + private $apcuPrefix; + + public function getPrefixes() + { + if (!empty($this->prefixesPsr0)) { + return call_user_func_array('array_merge', $this->prefixesPsr0); + } + + return array(); + } + + public function getPrefixesPsr4() + { + return $this->prefixDirsPsr4; + } + + public function getFallbackDirs() + { + return $this->fallbackDirsPsr0; + } + + public function getFallbackDirsPsr4() + { + return $this->fallbackDirsPsr4; + } + + public function getClassMap() + { + return $this->classMap; + } + + /** + * @param array $classMap Class to filename map + */ + public function addClassMap(array $classMap) + { + if ($this->classMap) { + $this->classMap = array_merge($this->classMap, $classMap); + } else { + $this->classMap = $classMap; + } + } + + /** + * Registers a set of PSR-0 directories for a given prefix, either + * appending or prepending to the ones previously set for this prefix. + * + * @param string $prefix The prefix + * @param array|string $paths The PSR-0 root directories + * @param bool $prepend Whether to prepend the directories + */ + public function add($prefix, $paths, $prepend = false) + { + if (!$prefix) { + if ($prepend) { + $this->fallbackDirsPsr0 = array_merge( + (array) $paths, + $this->fallbackDirsPsr0 + ); + } else { + $this->fallbackDirsPsr0 = array_merge( + $this->fallbackDirsPsr0, + (array) $paths + ); + } + + return; + } + + $first = $prefix[0]; + if (!isset($this->prefixesPsr0[$first][$prefix])) { + $this->prefixesPsr0[$first][$prefix] = (array) $paths; + + return; + } + if ($prepend) { + $this->prefixesPsr0[$first][$prefix] = array_merge( + (array) $paths, + $this->prefixesPsr0[$first][$prefix] + ); + } else { + $this->prefixesPsr0[$first][$prefix] = array_merge( + $this->prefixesPsr0[$first][$prefix], + (array) $paths + ); + } + } + + /** + * Registers a set of PSR-4 directories for a given namespace, either + * appending or prepending to the ones previously set for this namespace. + * + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param array|string $paths The PSR-4 base directories + * @param bool $prepend Whether to prepend the directories + * + * @throws \InvalidArgumentException + */ + public function addPsr4($prefix, $paths, $prepend = false) + { + if (!$prefix) { + // Register directories for the root namespace. + if ($prepend) { + $this->fallbackDirsPsr4 = array_merge( + (array) $paths, + $this->fallbackDirsPsr4 + ); + } else { + $this->fallbackDirsPsr4 = array_merge( + $this->fallbackDirsPsr4, + (array) $paths + ); + } + } elseif (!isset($this->prefixDirsPsr4[$prefix])) { + // Register directories for a new namespace. + $length = strlen($prefix); + if ('\\' !== $prefix[$length - 1]) { + throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); + } + $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; + $this->prefixDirsPsr4[$prefix] = (array) $paths; + } elseif ($prepend) { + // Prepend directories for an already registered namespace. + $this->prefixDirsPsr4[$prefix] = array_merge( + (array) $paths, + $this->prefixDirsPsr4[$prefix] + ); + } else { + // Append directories for an already registered namespace. + $this->prefixDirsPsr4[$prefix] = array_merge( + $this->prefixDirsPsr4[$prefix], + (array) $paths + ); + } + } + + /** + * Registers a set of PSR-0 directories for a given prefix, + * replacing any others previously set for this prefix. + * + * @param string $prefix The prefix + * @param array|string $paths The PSR-0 base directories + */ + public function set($prefix, $paths) + { + if (!$prefix) { + $this->fallbackDirsPsr0 = (array) $paths; + } else { + $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; + } + } + + /** + * Registers a set of PSR-4 directories for a given namespace, + * replacing any others previously set for this namespace. + * + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param array|string $paths The PSR-4 base directories + * + * @throws \InvalidArgumentException + */ + public function setPsr4($prefix, $paths) + { + if (!$prefix) { + $this->fallbackDirsPsr4 = (array) $paths; + } else { + $length = strlen($prefix); + if ('\\' !== $prefix[$length - 1]) { + throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); + } + $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; + $this->prefixDirsPsr4[$prefix] = (array) $paths; + } + } + + /** + * Turns on searching the include path for class files. + * + * @param bool $useIncludePath + */ + public function setUseIncludePath($useIncludePath) + { + $this->useIncludePath = $useIncludePath; + } + + /** + * Can be used to check if the autoloader uses the include path to check + * for classes. + * + * @return bool + */ + public function getUseIncludePath() + { + return $this->useIncludePath; + } + + /** + * Turns off searching the prefix and fallback directories for classes + * that have not been registered with the class map. + * + * @param bool $classMapAuthoritative + */ + public function setClassMapAuthoritative($classMapAuthoritative) + { + $this->classMapAuthoritative = $classMapAuthoritative; + } + + /** + * Should class lookup fail if not found in the current class map? + * + * @return bool + */ + public function isClassMapAuthoritative() + { + return $this->classMapAuthoritative; + } + + /** + * APCu prefix to use to cache found/not-found classes, if the extension is enabled. + * + * @param string|null $apcuPrefix + */ + public function setApcuPrefix($apcuPrefix) + { + $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; + } + + /** + * The APCu prefix in use, or null if APCu caching is not enabled. + * + * @return string|null + */ + public function getApcuPrefix() + { + return $this->apcuPrefix; + } + + /** + * Registers this instance as an autoloader. + * + * @param bool $prepend Whether to prepend the autoloader or not + */ + public function register($prepend = false) + { + spl_autoload_register(array($this, 'loadClass'), true, $prepend); + } + + /** + * Unregisters this instance as an autoloader. + */ + public function unregister() + { + spl_autoload_unregister(array($this, 'loadClass')); + } + + /** + * Loads the given class or interface. + * + * @param string $class The name of the class + * @return bool|null True if loaded, null otherwise + */ + public function loadClass($class) + { + if ($file = $this->findFile($class)) { + includeFile($file); + + return true; + } + } + + /** + * Finds the path to the file where the class is defined. + * + * @param string $class The name of the class + * + * @return string|false The path if found, false otherwise + */ + public function findFile($class) + { + // class map lookup + if (isset($this->classMap[$class])) { + return $this->classMap[$class]; + } + if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { + return false; + } + if (null !== $this->apcuPrefix) { + $file = apcu_fetch($this->apcuPrefix.$class, $hit); + if ($hit) { + return $file; + } + } + + $file = $this->findFileWithExtension($class, '.php'); + + // Search for Hack files if we are running on HHVM + if (false === $file && defined('HHVM_VERSION')) { + $file = $this->findFileWithExtension($class, '.hh'); + } + + if (null !== $this->apcuPrefix) { + apcu_add($this->apcuPrefix.$class, $file); + } + + if (false === $file) { + // Remember that this class does not exist. + $this->missingClasses[$class] = true; + } + + return $file; + } + + private function findFileWithExtension($class, $ext) + { + // PSR-4 lookup + $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; + + $first = $class[0]; + if (isset($this->prefixLengthsPsr4[$first])) { + $subPath = $class; + while (false !== $lastPos = strrpos($subPath, '\\')) { + $subPath = substr($subPath, 0, $lastPos); + $search = $subPath . '\\'; + if (isset($this->prefixDirsPsr4[$search])) { + $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); + foreach ($this->prefixDirsPsr4[$search] as $dir) { + if (file_exists($file = $dir . $pathEnd)) { + return $file; + } + } + } + } + } + + // PSR-4 fallback dirs + foreach ($this->fallbackDirsPsr4 as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { + return $file; + } + } + + // PSR-0 lookup + if (false !== $pos = strrpos($class, '\\')) { + // namespaced class name + $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1) + . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); + } else { + // PEAR-like class name + $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; + } + + if (isset($this->prefixesPsr0[$first])) { + foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { + if (0 === strpos($class, $prefix)) { + foreach ($dirs as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { + return $file; + } + } + } + } + } + + // PSR-0 fallback dirs + foreach ($this->fallbackDirsPsr0 as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { + return $file; + } + } + + // PSR-0 include paths. + if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) { + return $file; + } + + return false; + } +} + +/** + * Scope isolated include. + * + * Prevents access to $this/self from included files. + */ +function includeFile($file) +{ + include $file; +} diff --git a/lib/vendor/composer/LICENSE b/lib/vendor/composer/LICENSE new file mode 100644 index 0000000..f27399a --- /dev/null +++ b/lib/vendor/composer/LICENSE @@ -0,0 +1,21 @@ + +Copyright (c) Nils Adermann, Jordi Boggiano + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + diff --git a/lib/vendor/composer/autoload_classmap.php b/lib/vendor/composer/autoload_classmap.php new file mode 100644 index 0000000..7a91153 --- /dev/null +++ b/lib/vendor/composer/autoload_classmap.php @@ -0,0 +1,9 @@ + $vendorDir . '/swiftmailer/swiftmailer/lib/swift_required.php', + '5a4f8922d6b478e5112a2fcfcd7f5db2' => $vendorDir . '/symfony/autoload.php', +); diff --git a/lib/vendor/composer/autoload_namespaces.php b/lib/vendor/composer/autoload_namespaces.php new file mode 100644 index 0000000..0b651e0 --- /dev/null +++ b/lib/vendor/composer/autoload_namespaces.php @@ -0,0 +1,10 @@ + array($vendorDir . '/lexpress/doctrine1/lib'), +); diff --git a/lib/vendor/composer/autoload_psr4.php b/lib/vendor/composer/autoload_psr4.php new file mode 100644 index 0000000..6cf0c47 --- /dev/null +++ b/lib/vendor/composer/autoload_psr4.php @@ -0,0 +1,11 @@ + array($vendorDir . '/oomphinc/composer-installers-extender/src'), + 'Composer\\Installers\\' => array($vendorDir . '/composer/installers/src/Composer/Installers'), +); diff --git a/lib/vendor/composer/autoload_real.php b/lib/vendor/composer/autoload_real.php new file mode 100644 index 0000000..b62033e --- /dev/null +++ b/lib/vendor/composer/autoload_real.php @@ -0,0 +1,70 @@ += 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); + if ($useStaticLoader) { + require_once __DIR__ . '/autoload_static.php'; + + call_user_func(\Composer\Autoload\ComposerStaticInit2a1159440bc6539ffd8a15aab9623e0c::getInitializer($loader)); + } else { + $map = require __DIR__ . '/autoload_namespaces.php'; + foreach ($map as $namespace => $path) { + $loader->set($namespace, $path); + } + + $map = require __DIR__ . '/autoload_psr4.php'; + foreach ($map as $namespace => $path) { + $loader->setPsr4($namespace, $path); + } + + $classMap = require __DIR__ . '/autoload_classmap.php'; + if ($classMap) { + $loader->addClassMap($classMap); + } + } + + $loader->register(true); + + if ($useStaticLoader) { + $includeFiles = Composer\Autoload\ComposerStaticInit2a1159440bc6539ffd8a15aab9623e0c::$files; + } else { + $includeFiles = require __DIR__ . '/autoload_files.php'; + } + foreach ($includeFiles as $fileIdentifier => $file) { + composerRequire2a1159440bc6539ffd8a15aab9623e0c($fileIdentifier, $file); + } + + return $loader; + } +} + +function composerRequire2a1159440bc6539ffd8a15aab9623e0c($fileIdentifier, $file) +{ + if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { + require $file; + + $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; + } +} diff --git a/lib/vendor/composer/autoload_static.php b/lib/vendor/composer/autoload_static.php new file mode 100644 index 0000000..4088b34 --- /dev/null +++ b/lib/vendor/composer/autoload_static.php @@ -0,0 +1,55 @@ + __DIR__ . '/..' . '/swiftmailer/swiftmailer/lib/swift_required.php', + '5a4f8922d6b478e5112a2fcfcd7f5db2' => __DIR__ . '/..' . '/symfony/autoload.php', + ); + + public static $prefixLengthsPsr4 = array ( + 'O' => + array ( + 'OomphInc\\ComposerInstallersExtender\\' => 36, + ), + 'C' => + array ( + 'Composer\\Installers\\' => 20, + ), + ); + + public static $prefixDirsPsr4 = array ( + 'OomphInc\\ComposerInstallersExtender\\' => + array ( + 0 => __DIR__ . '/..' . '/oomphinc/composer-installers-extender/src', + ), + 'Composer\\Installers\\' => + array ( + 0 => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers', + ), + ); + + public static $prefixesPsr0 = array ( + 'D' => + array ( + 'Doctrine_' => + array ( + 0 => __DIR__ . '/..' . '/lexpress/doctrine1/lib', + ), + ), + ); + + public static function getInitializer(ClassLoader $loader) + { + return \Closure::bind(function () use ($loader) { + $loader->prefixLengthsPsr4 = ComposerStaticInit2a1159440bc6539ffd8a15aab9623e0c::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInit2a1159440bc6539ffd8a15aab9623e0c::$prefixDirsPsr4; + $loader->prefixesPsr0 = ComposerStaticInit2a1159440bc6539ffd8a15aab9623e0c::$prefixesPsr0; + + }, null, ClassLoader::class); + } +} diff --git a/lib/vendor/composer/installed.json b/lib/vendor/composer/installed.json new file mode 100644 index 0000000..b7ad33c --- /dev/null +++ b/lib/vendor/composer/installed.json @@ -0,0 +1,342 @@ +[ + { + "name": "composer/installers", + "version": "v1.9.0", + "version_normalized": "1.9.0.0", + "source": { + "type": "git", + "url": "https://github.com/composer/installers.git", + "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/installers/zipball/b93bcf0fa1fccb0b7d176b0967d969691cd74cca", + "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0 || ^2.0" + }, + "replace": { + "roundcube/plugin-installer": "*", + "shama/baton": "*" + }, + "require-dev": { + "composer/composer": "1.6.* || 2.0.*@dev", + "composer/semver": "1.0.* || 2.0.*@dev", + "phpunit/phpunit": "^4.8.36", + "sebastian/comparator": "^1.2.4", + "symfony/process": "^2.3" + }, + "time": "2020-04-07T06:57:05+00:00", + "type": "composer-plugin", + "extra": { + "class": "Composer\\Installers\\Plugin", + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Composer\\Installers\\": "src/Composer/Installers" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Kyle Robinson Young", + "email": "kyle@dontkry.com", + "homepage": "https://github.com/shama" + } + ], + "description": "A multi-framework Composer library installer", + "homepage": "https://composer.github.io/installers/", + "keywords": [ + "Craft", + "Dolibarr", + "Eliasis", + "Hurad", + "ImageCMS", + "Kanboard", + "Lan Management System", + "MODX Evo", + "MantisBT", + "Mautic", + "Maya", + "OXID", + "Plentymarkets", + "Porto", + "RadPHP", + "SMF", + "Thelia", + "Whmcs", + "WolfCMS", + "agl", + "aimeos", + "annotatecms", + "attogram", + "bitrix", + "cakephp", + "chef", + "cockpit", + "codeigniter", + "concrete5", + "croogo", + "dokuwiki", + "drupal", + "eZ Platform", + "elgg", + "expressionengine", + "fuelphp", + "grav", + "installer", + "itop", + "joomla", + "known", + "kohana", + "laravel", + "lavalite", + "lithium", + "magento", + "majima", + "mako", + "mediawiki", + "modulework", + "modx", + "moodle", + "osclass", + "phpbb", + "piwik", + "ppi", + "puppet", + "pxcms", + "reindex", + "roundcube", + "shopware", + "silverstripe", + "sydes", + "sylius", + "symfony", + "typo3", + "wordpress", + "yawik", + "zend", + "zikula" + ] + }, + { + "name": "lexpress/doctrine1", + "version": "dev-master", + "version_normalized": "9999999-dev", + "source": { + "type": "git", + "url": "https://github.com/FriendsOfSymfony1/doctrine1.git", + "reference": "3ef85915e56b29475e9bff85bfc1f80d41028a7f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FriendsOfSymfony1/doctrine1/zipball/3ef85915e56b29475e9bff85bfc1f80d41028a7f", + "reference": "3ef85915e56b29475e9bff85bfc1f80d41028a7f", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "ext-pdo": "*", + "php": ">=5.3" + }, + "time": "2020-07-10T03:00:50+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4-dev" + } + }, + "installation-source": "source", + "autoload": { + "psr-0": { + "Doctrine_": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "LGPL-2.1-or-later" + ], + "authors": [ + { + "name": "Konsta Vesterinen", + "email": "kvesteri@cc.hut.fi" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Doctrine1 Contributors", + "homepage": "https://github.com/FriendsOfSymfony1/doctrine1/graphs/contributors" + } + ], + "description": "PHP Database ORM for Symfony1. Do NOT use for new projects: please move to a newest Symfony release and Doctrine2", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "database", + "doctrine1", + "orm", + "symfony1" + ] + }, + { + "name": "lexpress/symfony1", + "version": "dev-ohrm", + "version_normalized": "dev-ohrm", + "source": { + "type": "git", + "url": "https://github.com/orangehrm/symfony1.git", + "reference": "38e9b72dac7e9b92453796cc00194709e21d95b8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/orangehrm/symfony1/zipball/38e9b72dac7e9b92453796cc00194709e21d95b8", + "reference": "38e9b72dac7e9b92453796cc00194709e21d95b8", + "shasum": "" + }, + "require": { + "oomphinc/composer-installers-extender": "^1.1", + "swiftmailer/swiftmailer": "~5.2" + }, + "require-dev": { + "psr/log": "*" + }, + "suggest": { + "lexpress/doctrine1": "Doctrine plugin", + "propel/sf-propel-o-r-m-plugin": "Propel plugin", + "psr/log": "Psr logger" + }, + "time": "2020-04-21T02:58:39+00:00", + "bin": [ + "data/bin/symfony" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.5-dev" + } + }, + "installation-source": "source", + "autoload": { + "files": [ + "autoload.php" + ] + }, + "license": [ + "MIT" + ], + "description": "Fork of symfony 1.4 with dic, form enhancements, latest swiftmailer and better performance", + "support": { + "source": "https://github.com/orangehrm/symfony1/tree/ohrm" + } + }, + { + "name": "oomphinc/composer-installers-extender", + "version": "v1.1.2", + "version_normalized": "1.1.2.0", + "source": { + "type": "git", + "url": "https://github.com/oomphinc/composer-installers-extender.git", + "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56", + "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0", + "composer/installers": "^1.0" + }, + "time": "2017-03-31T16:57:39+00:00", + "type": "composer-plugin", + "extra": { + "class": "OomphInc\\ComposerInstallersExtender\\Plugin" + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "OomphInc\\ComposerInstallersExtender\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Stephen Beemsterboer", + "email": "stephen@oomphinc.com", + "homepage": "https://github.com/balbuf" + } + ], + "description": "Extend the composer/installers plugin to accept any arbitrary package type.", + "homepage": "http://www.oomphinc.com/" + }, + { + "name": "swiftmailer/swiftmailer", + "version": "v5.4.12", + "version_normalized": "5.4.12.0", + "source": { + "type": "git", + "url": "https://github.com/swiftmailer/swiftmailer.git", + "reference": "181b89f18a90f8925ef805f950d47a7190e9b950" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/181b89f18a90f8925ef805f950d47a7190e9b950", + "reference": "181b89f18a90f8925ef805f950d47a7190e9b950", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "require-dev": { + "mockery/mockery": "~0.9.1", + "symfony/phpunit-bridge": "~3.2" + }, + "time": "2018-07-31T09:26:32+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.4-dev" + } + }, + "installation-source": "dist", + "autoload": { + "files": [ + "lib/swift_required.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Corbyn" + }, + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + } + ], + "description": "Swiftmailer, free feature-rich PHP mailer", + "homepage": "https://swiftmailer.symfony.com", + "keywords": [ + "email", + "mail", + "mailer" + ] + } +] diff --git a/lib/vendor/composer/installers/LICENSE b/lib/vendor/composer/installers/LICENSE new file mode 100644 index 0000000..85f97fc --- /dev/null +++ b/lib/vendor/composer/installers/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2012 Kyle Robinson Young + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/lib/vendor/composer/installers/composer.json b/lib/vendor/composer/installers/composer.json new file mode 100644 index 0000000..c21715d --- /dev/null +++ b/lib/vendor/composer/installers/composer.json @@ -0,0 +1,112 @@ +{ + "name": "composer/installers", + "type": "composer-plugin", + "license": "MIT", + "description": "A multi-framework Composer library installer", + "keywords": [ + "installer", + "Aimeos", + "AGL", + "AnnotateCms", + "Attogram", + "Bitrix", + "CakePHP", + "Chef", + "Cockpit", + "CodeIgniter", + "concrete5", + "Craft", + "Croogo", + "DokuWiki", + "Dolibarr", + "Drupal", + "Elgg", + "Eliasis", + "ExpressionEngine", + "eZ Platform", + "FuelPHP", + "Grav", + "Hurad", + "ImageCMS", + "iTop", + "Joomla", + "Kanboard", + "Known", + "Kohana", + "Lan Management System", + "Laravel", + "Lavalite", + "Lithium", + "Magento", + "majima", + "Mako", + "MantisBT", + "Mautic", + "Maya", + "MODX", + "MODX Evo", + "MediaWiki", + "OXID", + "osclass", + "MODULEWork", + "Moodle", + "Piwik", + "pxcms", + "phpBB", + "Plentymarkets", + "PPI", + "Puppet", + "Porto", + "RadPHP", + "ReIndex", + "Roundcube", + "shopware", + "SilverStripe", + "SMF", + "SyDES", + "Sylius", + "symfony", + "Thelia", + "TYPO3", + "WHMCS", + "WolfCMS", + "WordPress", + "YAWIK", + "Zend", + "Zikula" + ], + "homepage": "https://composer.github.io/installers/", + "authors": [ + { + "name": "Kyle Robinson Young", + "email": "kyle@dontkry.com", + "homepage": "https://github.com/shama" + } + ], + "autoload": { + "psr-4": { "Composer\\Installers\\": "src/Composer/Installers" } + }, + "extra": { + "class": "Composer\\Installers\\Plugin", + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "replace": { + "shama/baton": "*", + "roundcube/plugin-installer": "*" + }, + "require": { + "composer-plugin-api": "^1.0 || ^2.0" + }, + "require-dev": { + "composer/composer": "1.6.* || 2.0.*@dev", + "composer/semver": "1.0.* || 2.0.*@dev", + "phpunit/phpunit": "^4.8.36", + "sebastian/comparator": "^1.2.4", + "symfony/process": "^2.3" + }, + "scripts": { + "test": "phpunit" + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/AglInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/AglInstaller.php new file mode 100644 index 0000000..01b8a41 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/AglInstaller.php @@ -0,0 +1,21 @@ + 'More/{$name}/', + ); + + /** + * Format package name to CamelCase + */ + public function inflectPackageVars($vars) + { + $vars['name'] = preg_replace_callback('/(?:^|_|-)(.?)/', function ($matches) { + return strtoupper($matches[1]); + }, $vars['name']); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php new file mode 100644 index 0000000..79a0e95 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php @@ -0,0 +1,9 @@ + 'ext/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php new file mode 100644 index 0000000..89d7ad9 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php @@ -0,0 +1,11 @@ + 'addons/modules/{$name}/', + 'component' => 'addons/components/{$name}/', + 'service' => 'addons/services/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php new file mode 100644 index 0000000..22dad1b --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php @@ -0,0 +1,49 @@ + 'Modules/{$name}/', + 'theme' => 'Themes/{$name}/' + ); + + /** + * Format package name. + * + * For package type asgard-module, cut off a trailing '-plugin' if present. + * + * For package type asgard-theme, cut off a trailing '-theme' if present. + * + */ + public function inflectPackageVars($vars) + { + if ($vars['type'] === 'asgard-module') { + return $this->inflectPluginVars($vars); + } + + if ($vars['type'] === 'asgard-theme') { + return $this->inflectThemeVars($vars); + } + + return $vars; + } + + protected function inflectPluginVars($vars) + { + $vars['name'] = preg_replace('/-module$/', '', $vars['name']); + $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); + $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); + + return $vars; + } + + protected function inflectThemeVars($vars) + { + $vars['name'] = preg_replace('/-theme$/', '', $vars['name']); + $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); + $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php new file mode 100644 index 0000000..d62fd8f --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php @@ -0,0 +1,9 @@ + 'modules/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php new file mode 100644 index 0000000..d9d6073 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php @@ -0,0 +1,137 @@ +composer = $composer; + $this->package = $package; + $this->io = $io; + } + + /** + * Return the install path based on package type. + * + * @param PackageInterface $package + * @param string $frameworkType + * @return string + */ + public function getInstallPath(PackageInterface $package, $frameworkType = '') + { + $type = $this->package->getType(); + + $prettyName = $this->package->getPrettyName(); + if (strpos($prettyName, '/') !== false) { + list($vendor, $name) = explode('/', $prettyName); + } else { + $vendor = ''; + $name = $prettyName; + } + + $availableVars = $this->inflectPackageVars(compact('name', 'vendor', 'type')); + + $extra = $package->getExtra(); + if (!empty($extra['installer-name'])) { + $availableVars['name'] = $extra['installer-name']; + } + + if ($this->composer->getPackage()) { + $extra = $this->composer->getPackage()->getExtra(); + if (!empty($extra['installer-paths'])) { + $customPath = $this->mapCustomInstallPaths($extra['installer-paths'], $prettyName, $type, $vendor); + if ($customPath !== false) { + return $this->templatePath($customPath, $availableVars); + } + } + } + + $packageType = substr($type, strlen($frameworkType) + 1); + $locations = $this->getLocations(); + if (!isset($locations[$packageType])) { + throw new \InvalidArgumentException(sprintf('Package type "%s" is not supported', $type)); + } + + return $this->templatePath($locations[$packageType], $availableVars); + } + + /** + * For an installer to override to modify the vars per installer. + * + * @param array $vars + * @return array + */ + public function inflectPackageVars($vars) + { + return $vars; + } + + /** + * Gets the installer's locations + * + * @return array + */ + public function getLocations() + { + return $this->locations; + } + + /** + * Replace vars in a path + * + * @param string $path + * @param array $vars + * @return string + */ + protected function templatePath($path, array $vars = array()) + { + if (strpos($path, '{') !== false) { + extract($vars); + preg_match_all('@\{\$([A-Za-z0-9_]*)\}@i', $path, $matches); + if (!empty($matches[1])) { + foreach ($matches[1] as $var) { + $path = str_replace('{$' . $var . '}', $$var, $path); + } + } + } + + return $path; + } + + /** + * Search through a passed paths array for a custom install path. + * + * @param array $paths + * @param string $name + * @param string $type + * @param string $vendor = NULL + * @return string + */ + protected function mapCustomInstallPaths(array $paths, $name, $type, $vendor = NULL) + { + foreach ($paths as $path => $names) { + $names = (array) $names; + if (in_array($name, $names) || in_array('type:' . $type, $names) || in_array('vendor:' . $vendor, $names)) { + return $path; + } + } + + return false; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php new file mode 100644 index 0000000..e80cd1e --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php @@ -0,0 +1,126 @@ +.`. + * - `bitrix-d7-component` — copy the component to directory `bitrix/components//`. + * - `bitrix-d7-template` — copy the template to directory `bitrix/templates/_`. + * + * You can set custom path to directory with Bitrix kernel in `composer.json`: + * + * ```json + * { + * "extra": { + * "bitrix-dir": "s1/bitrix" + * } + * } + * ``` + * + * @author Nik Samokhvalov + * @author Denis Kulichkin + */ +class BitrixInstaller extends BaseInstaller +{ + protected $locations = array( + 'module' => '{$bitrix_dir}/modules/{$name}/', // deprecated, remove on the major release (Backward compatibility will be broken) + 'component' => '{$bitrix_dir}/components/{$name}/', // deprecated, remove on the major release (Backward compatibility will be broken) + 'theme' => '{$bitrix_dir}/templates/{$name}/', // deprecated, remove on the major release (Backward compatibility will be broken) + 'd7-module' => '{$bitrix_dir}/modules/{$vendor}.{$name}/', + 'd7-component' => '{$bitrix_dir}/components/{$vendor}/{$name}/', + 'd7-template' => '{$bitrix_dir}/templates/{$vendor}_{$name}/', + ); + + /** + * @var array Storage for informations about duplicates at all the time of installation packages. + */ + private static $checkedDuplicates = array(); + + /** + * {@inheritdoc} + */ + public function inflectPackageVars($vars) + { + if ($this->composer->getPackage()) { + $extra = $this->composer->getPackage()->getExtra(); + + if (isset($extra['bitrix-dir'])) { + $vars['bitrix_dir'] = $extra['bitrix-dir']; + } + } + + if (!isset($vars['bitrix_dir'])) { + $vars['bitrix_dir'] = 'bitrix'; + } + + return parent::inflectPackageVars($vars); + } + + /** + * {@inheritdoc} + */ + protected function templatePath($path, array $vars = array()) + { + $templatePath = parent::templatePath($path, $vars); + $this->checkDuplicates($templatePath, $vars); + + return $templatePath; + } + + /** + * Duplicates search packages. + * + * @param string $path + * @param array $vars + */ + protected function checkDuplicates($path, array $vars = array()) + { + $packageType = substr($vars['type'], strlen('bitrix') + 1); + $localDir = explode('/', $vars['bitrix_dir']); + array_pop($localDir); + $localDir[] = 'local'; + $localDir = implode('/', $localDir); + + $oldPath = str_replace( + array('{$bitrix_dir}', '{$name}'), + array($localDir, $vars['name']), + $this->locations[$packageType] + ); + + if (in_array($oldPath, static::$checkedDuplicates)) { + return; + } + + if ($oldPath !== $path && file_exists($oldPath) && $this->io && $this->io->isInteractive()) { + + $this->io->writeError(' Duplication of packages:'); + $this->io->writeError(' Package ' . $oldPath . ' will be called instead package ' . $path . ''); + + while (true) { + switch ($this->io->ask(' Delete ' . $oldPath . ' [y,n,?]? ', '?')) { + case 'y': + $fs = new Filesystem(); + $fs->removeDirectory($oldPath); + break 2; + + case 'n': + break 2; + + case '?': + default: + $this->io->writeError(array( + ' y - delete package ' . $oldPath . ' and to continue with the installation', + ' n - don\'t delete and to continue with the installation', + )); + $this->io->writeError(' ? - print help'); + break; + } + } + } + + static::$checkedDuplicates[] = $oldPath; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php new file mode 100644 index 0000000..da3aad2 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php @@ -0,0 +1,9 @@ + 'Packages/{$vendor}/{$name}/' + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php new file mode 100644 index 0000000..71ee2ef --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php @@ -0,0 +1,72 @@ + 'Plugin/{$name}/', + ); + + /** + * Format package name to CamelCase + */ + public function inflectPackageVars($vars) + { + if ($this->matchesCakeVersion('>=', '3.0.0')) { + return $vars; + } + + $nameParts = explode('/', $vars['name']); + foreach ($nameParts as &$value) { + $value = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $value)); + $value = str_replace(array('-', '_'), ' ', $value); + $value = str_replace(' ', '', ucwords($value)); + } + $vars['name'] = implode('/', $nameParts); + + return $vars; + } + + /** + * Change the default plugin location when cakephp >= 3.0 + */ + public function getLocations() + { + if ($this->matchesCakeVersion('>=', '3.0.0')) { + $this->locations['plugin'] = $this->composer->getConfig()->get('vendor-dir') . '/{$vendor}/{$name}/'; + } + return $this->locations; + } + + /** + * Check if CakePHP version matches against a version + * + * @param string $matcher + * @param string $version + * @return bool + */ + protected function matchesCakeVersion($matcher, $version) + { + if (class_exists('Composer\Semver\Constraint\MultiConstraint')) { + $multiClass = 'Composer\Semver\Constraint\MultiConstraint'; + $constraintClass = 'Composer\Semver\Constraint\Constraint'; + } else { + $multiClass = 'Composer\Package\LinkConstraint\MultiConstraint'; + $constraintClass = 'Composer\Package\LinkConstraint\VersionConstraint'; + } + + $repositoryManager = $this->composer->getRepositoryManager(); + if (! $repositoryManager) { + return false; + } + + $repos = $repositoryManager->getLocalRepository(); + if (!$repos) { + return false; + } + + return $repos->findPackage('cakephp/cakephp', new $constraintClass($matcher, $version)) !== null; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php new file mode 100644 index 0000000..ab2f9aa --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php @@ -0,0 +1,11 @@ + 'Chef/{$vendor}/{$name}/', + 'role' => 'Chef/roles/{$name}/', + ); +} + diff --git a/lib/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php new file mode 100644 index 0000000..6673aea --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php @@ -0,0 +1,9 @@ + 'ext/{$name}/' + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php new file mode 100644 index 0000000..c887815 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php @@ -0,0 +1,10 @@ + 'CCF/orbit/{$name}/', + 'theme' => 'CCF/app/themes/{$name}/', + ); +} \ No newline at end of file diff --git a/lib/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php new file mode 100644 index 0000000..c7816df --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php @@ -0,0 +1,34 @@ + 'cockpit/modules/addons/{$name}/', + ); + + /** + * Format module name. + * + * Strip `module-` prefix from package name. + * + * @param array @vars + * + * @return array + */ + public function inflectPackageVars($vars) + { + if ($vars['type'] == 'cockpit-module') { + return $this->inflectModuleVars($vars); + } + + return $vars; + } + + public function inflectModuleVars($vars) + { + $vars['name'] = ucfirst(preg_replace('/cockpit-/i', '', $vars['name'])); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php new file mode 100644 index 0000000..3b4a4ec --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php @@ -0,0 +1,11 @@ + 'application/libraries/{$name}/', + 'third-party' => 'application/third_party/{$name}/', + 'module' => 'application/modules/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php b/lib/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php new file mode 100644 index 0000000..5c01baf --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php @@ -0,0 +1,13 @@ + 'concrete/', + 'block' => 'application/blocks/{$name}/', + 'package' => 'packages/{$name}/', + 'theme' => 'application/themes/{$name}/', + 'update' => 'updates/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php new file mode 100644 index 0000000..d37a77a --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php @@ -0,0 +1,35 @@ + 'craft/plugins/{$name}/', + ); + + /** + * Strip `craft-` prefix and/or `-plugin` suffix from package names + * + * @param array $vars + * + * @return array + */ + final public function inflectPackageVars($vars) + { + return $this->inflectPluginVars($vars); + } + + private function inflectPluginVars($vars) + { + $vars['name'] = preg_replace('/-' . self::NAME_SUFFIX . '$/i', '', $vars['name']); + $vars['name'] = preg_replace('/^' . self::NAME_PREFIX . '-/i', '', $vars['name']); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php new file mode 100644 index 0000000..d94219d --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php @@ -0,0 +1,21 @@ + 'Plugin/{$name}/', + 'theme' => 'View/Themed/{$name}/', + ); + + /** + * Format package name to CamelCase + */ + public function inflectPackageVars($vars) + { + $vars['name'] = strtolower(str_replace(array('-', '_'), ' ', $vars['name'])); + $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php new file mode 100644 index 0000000..f4837a6 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php @@ -0,0 +1,10 @@ + 'app/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/DframeInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/DframeInstaller.php new file mode 100644 index 0000000..7078816 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/DframeInstaller.php @@ -0,0 +1,10 @@ + 'modules/{$vendor}/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php new file mode 100644 index 0000000..cfd638d --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php @@ -0,0 +1,50 @@ + 'lib/plugins/{$name}/', + 'template' => 'lib/tpl/{$name}/', + ); + + /** + * Format package name. + * + * For package type dokuwiki-plugin, cut off a trailing '-plugin', + * or leading dokuwiki_ if present. + * + * For package type dokuwiki-template, cut off a trailing '-template' if present. + * + */ + public function inflectPackageVars($vars) + { + + if ($vars['type'] === 'dokuwiki-plugin') { + return $this->inflectPluginVars($vars); + } + + if ($vars['type'] === 'dokuwiki-template') { + return $this->inflectTemplateVars($vars); + } + + return $vars; + } + + protected function inflectPluginVars($vars) + { + $vars['name'] = preg_replace('/-plugin$/', '', $vars['name']); + $vars['name'] = preg_replace('/^dokuwiki_?-?/', '', $vars['name']); + + return $vars; + } + + protected function inflectTemplateVars($vars) + { + $vars['name'] = preg_replace('/-template$/', '', $vars['name']); + $vars['name'] = preg_replace('/^dokuwiki_?-?/', '', $vars['name']); + + return $vars; + } + +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php new file mode 100644 index 0000000..21f7e8e --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php @@ -0,0 +1,16 @@ + + */ +class DolibarrInstaller extends BaseInstaller +{ + //TODO: Add support for scripts and themes + protected $locations = array( + 'module' => 'htdocs/custom/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php new file mode 100644 index 0000000..7328239 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php @@ -0,0 +1,22 @@ + 'core/', + 'module' => 'modules/{$name}/', + 'theme' => 'themes/{$name}/', + 'library' => 'libraries/{$name}/', + 'profile' => 'profiles/{$name}/', + 'database-driver' => 'drivers/lib/Drupal/Driver/Database/{$name}/', + 'drush' => 'drush/{$name}/', + 'custom-theme' => 'themes/custom/{$name}/', + 'custom-module' => 'modules/custom/{$name}/', + 'custom-profile' => 'profiles/custom/{$name}/', + 'drupal-multisite' => 'sites/{$name}/', + 'console' => 'console/{$name}/', + 'console-language' => 'console/language/{$name}/', + 'config' => 'config/sync/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php new file mode 100644 index 0000000..c0bb609 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php @@ -0,0 +1,9 @@ + 'mod/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php new file mode 100644 index 0000000..6f3dc97 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php @@ -0,0 +1,12 @@ + 'components/{$name}/', + 'module' => 'modules/{$name}/', + 'plugin' => 'plugins/{$name}/', + 'template' => 'templates/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php new file mode 100644 index 0000000..d5321a8 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php @@ -0,0 +1,29 @@ + 'system/expressionengine/third_party/{$name}/', + 'theme' => 'themes/third_party/{$name}/', + ); + + private $ee3Locations = array( + 'addon' => 'system/user/addons/{$name}/', + 'theme' => 'themes/user/{$name}/', + ); + + public function getInstallPath(PackageInterface $package, $frameworkType = '') + { + + $version = "{$frameworkType}Locations"; + $this->locations = $this->$version; + + return parent::getInstallPath($package, $frameworkType); + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php new file mode 100644 index 0000000..f30ebcc --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php @@ -0,0 +1,10 @@ + 'web/assets/ezplatform/', + 'assets' => 'web/assets/ezplatform/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php new file mode 100644 index 0000000..6eba2e3 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php @@ -0,0 +1,11 @@ + 'fuel/app/modules/{$name}/', + 'package' => 'fuel/packages/{$name}/', + 'theme' => 'fuel/app/themes/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php new file mode 100644 index 0000000..29d980b --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php @@ -0,0 +1,9 @@ + 'components/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/GravInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/GravInstaller.php new file mode 100644 index 0000000..dbe63e0 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/GravInstaller.php @@ -0,0 +1,30 @@ + 'user/plugins/{$name}/', + 'theme' => 'user/themes/{$name}/', + ); + + /** + * Format package name + * + * @param array $vars + * + * @return array + */ + public function inflectPackageVars($vars) + { + $restrictedWords = implode('|', array_keys($this->locations)); + + $vars['name'] = strtolower($vars['name']); + $vars['name'] = preg_replace('/^(?:grav-)?(?:(?:'.$restrictedWords.')-)?(.*?)(?:-(?:'.$restrictedWords.'))?$/ui', + '$1', + $vars['name'] + ); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php new file mode 100644 index 0000000..8fe017f --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php @@ -0,0 +1,25 @@ + 'plugins/{$name}/', + 'theme' => 'plugins/{$name}/', + ); + + /** + * Format package name to CamelCase + */ + public function inflectPackageVars($vars) + { + $nameParts = explode('/', $vars['name']); + foreach ($nameParts as &$value) { + $value = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $value)); + $value = str_replace(array('-', '_'), ' ', $value); + $value = str_replace(' ', '', ucwords($value)); + } + $vars['name'] = implode('/', $nameParts); + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php new file mode 100644 index 0000000..5e2142e --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php @@ -0,0 +1,11 @@ + 'templates/{$name}/', + 'module' => 'application/modules/{$name}/', + 'library' => 'application/libraries/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/Installer.php b/lib/vendor/composer/installers/src/Composer/Installers/Installer.php new file mode 100644 index 0000000..d1d43b9 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/Installer.php @@ -0,0 +1,280 @@ + 'AimeosInstaller', + 'asgard' => 'AsgardInstaller', + 'attogram' => 'AttogramInstaller', + 'agl' => 'AglInstaller', + 'annotatecms' => 'AnnotateCmsInstaller', + 'bitrix' => 'BitrixInstaller', + 'bonefish' => 'BonefishInstaller', + 'cakephp' => 'CakePHPInstaller', + 'chef' => 'ChefInstaller', + 'civicrm' => 'CiviCrmInstaller', + 'ccframework' => 'ClanCatsFrameworkInstaller', + 'cockpit' => 'CockpitInstaller', + 'codeigniter' => 'CodeIgniterInstaller', + 'concrete5' => 'Concrete5Installer', + 'craft' => 'CraftInstaller', + 'croogo' => 'CroogoInstaller', + 'dframe' => 'DframeInstaller', + 'dokuwiki' => 'DokuWikiInstaller', + 'dolibarr' => 'DolibarrInstaller', + 'decibel' => 'DecibelInstaller', + 'drupal' => 'DrupalInstaller', + 'elgg' => 'ElggInstaller', + 'eliasis' => 'EliasisInstaller', + 'ee3' => 'ExpressionEngineInstaller', + 'ee2' => 'ExpressionEngineInstaller', + 'ezplatform' => 'EzPlatformInstaller', + 'fuel' => 'FuelInstaller', + 'fuelphp' => 'FuelphpInstaller', + 'grav' => 'GravInstaller', + 'hurad' => 'HuradInstaller', + 'imagecms' => 'ImageCMSInstaller', + 'itop' => 'ItopInstaller', + 'joomla' => 'JoomlaInstaller', + 'kanboard' => 'KanboardInstaller', + 'kirby' => 'KirbyInstaller', + 'known' => 'KnownInstaller', + 'kodicms' => 'KodiCMSInstaller', + 'kohana' => 'KohanaInstaller', + 'lms' => 'LanManagementSystemInstaller', + 'laravel' => 'LaravelInstaller', + 'lavalite' => 'LavaLiteInstaller', + 'lithium' => 'LithiumInstaller', + 'magento' => 'MagentoInstaller', + 'majima' => 'MajimaInstaller', + 'mantisbt' => 'MantisBTInstaller', + 'mako' => 'MakoInstaller', + 'maya' => 'MayaInstaller', + 'mautic' => 'MauticInstaller', + 'mediawiki' => 'MediaWikiInstaller', + 'microweber' => 'MicroweberInstaller', + 'modulework' => 'MODULEWorkInstaller', + 'modx' => 'ModxInstaller', + 'modxevo' => 'MODXEvoInstaller', + 'moodle' => 'MoodleInstaller', + 'october' => 'OctoberInstaller', + 'ontowiki' => 'OntoWikiInstaller', + 'oxid' => 'OxidInstaller', + 'osclass' => 'OsclassInstaller', + 'pxcms' => 'PxcmsInstaller', + 'phpbb' => 'PhpBBInstaller', + 'pimcore' => 'PimcoreInstaller', + 'piwik' => 'PiwikInstaller', + 'plentymarkets'=> 'PlentymarketsInstaller', + 'ppi' => 'PPIInstaller', + 'puppet' => 'PuppetInstaller', + 'radphp' => 'RadPHPInstaller', + 'phifty' => 'PhiftyInstaller', + 'porto' => 'PortoInstaller', + 'redaxo' => 'RedaxoInstaller', + 'redaxo5' => 'Redaxo5Installer', + 'reindex' => 'ReIndexInstaller', + 'roundcube' => 'RoundcubeInstaller', + 'shopware' => 'ShopwareInstaller', + 'sitedirect' => 'SiteDirectInstaller', + 'silverstripe' => 'SilverStripeInstaller', + 'smf' => 'SMFInstaller', + 'sydes' => 'SyDESInstaller', + 'sylius' => 'SyliusInstaller', + 'symfony1' => 'Symfony1Installer', + 'tao' => 'TaoInstaller', + 'thelia' => 'TheliaInstaller', + 'tusk' => 'TuskInstaller', + 'typo3-cms' => 'TYPO3CmsInstaller', + 'typo3-flow' => 'TYPO3FlowInstaller', + 'userfrosting' => 'UserFrostingInstaller', + 'vanilla' => 'VanillaInstaller', + 'whmcs' => 'WHMCSInstaller', + 'wolfcms' => 'WolfCMSInstaller', + 'wordpress' => 'WordPressInstaller', + 'yawik' => 'YawikInstaller', + 'zend' => 'ZendInstaller', + 'zikula' => 'ZikulaInstaller', + 'prestashop' => 'PrestashopInstaller' + ); + + /** + * Installer constructor. + * + * Disables installers specified in main composer extra installer-disable + * list + * + * @param IOInterface $io + * @param Composer $composer + * @param string $type + * @param Filesystem|null $filesystem + * @param BinaryInstaller|null $binaryInstaller + */ + public function __construct( + IOInterface $io, + Composer $composer, + $type = 'library', + Filesystem $filesystem = null, + BinaryInstaller $binaryInstaller = null + ) { + parent::__construct($io, $composer, $type, $filesystem, + $binaryInstaller); + $this->removeDisabledInstallers(); + } + + /** + * {@inheritDoc} + */ + public function getInstallPath(PackageInterface $package) + { + $type = $package->getType(); + $frameworkType = $this->findFrameworkType($type); + + if ($frameworkType === false) { + throw new \InvalidArgumentException( + 'Sorry the package type of this package is not yet supported.' + ); + } + + $class = 'Composer\\Installers\\' . $this->supportedTypes[$frameworkType]; + $installer = new $class($package, $this->composer, $this->getIO()); + + return $installer->getInstallPath($package, $frameworkType); + } + + public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package) + { + parent::uninstall($repo, $package); + $installPath = $this->getPackageBasePath($package); + $this->io->write(sprintf('Deleting %s - %s', $installPath, !file_exists($installPath) ? 'deleted' : 'not deleted')); + } + + /** + * {@inheritDoc} + */ + public function supports($packageType) + { + $frameworkType = $this->findFrameworkType($packageType); + + if ($frameworkType === false) { + return false; + } + + $locationPattern = $this->getLocationPattern($frameworkType); + + return preg_match('#' . $frameworkType . '-' . $locationPattern . '#', $packageType, $matches) === 1; + } + + /** + * Finds a supported framework type if it exists and returns it + * + * @param string $type + * @return string + */ + protected function findFrameworkType($type) + { + $frameworkType = false; + + krsort($this->supportedTypes); + + foreach ($this->supportedTypes as $key => $val) { + if ($key === substr($type, 0, strlen($key))) { + $frameworkType = substr($type, 0, strlen($key)); + break; + } + } + + return $frameworkType; + } + + /** + * Get the second part of the regular expression to check for support of a + * package type + * + * @param string $frameworkType + * @return string + */ + protected function getLocationPattern($frameworkType) + { + $pattern = false; + if (!empty($this->supportedTypes[$frameworkType])) { + $frameworkClass = 'Composer\\Installers\\' . $this->supportedTypes[$frameworkType]; + /** @var BaseInstaller $framework */ + $framework = new $frameworkClass(null, $this->composer, $this->getIO()); + $locations = array_keys($framework->getLocations()); + $pattern = $locations ? '(' . implode('|', $locations) . ')' : false; + } + + return $pattern ? : '(\w+)'; + } + + /** + * Get I/O object + * + * @return IOInterface + */ + private function getIO() + { + return $this->io; + } + + /** + * Look for installers set to be disabled in composer's extra config and + * remove them from the list of supported installers. + * + * Globals: + * - true, "all", and "*" - disable all installers. + * - false - enable all installers (useful with + * wikimedia/composer-merge-plugin or similar) + * + * @return void + */ + protected function removeDisabledInstallers() + { + $extra = $this->composer->getPackage()->getExtra(); + + if (!isset($extra['installer-disable']) || $extra['installer-disable'] === false) { + // No installers are disabled + return; + } + + // Get installers to disable + $disable = $extra['installer-disable']; + + // Ensure $disabled is an array + if (!is_array($disable)) { + $disable = array($disable); + } + + // Check which installers should be disabled + $all = array(true, "all", "*"); + $intersect = array_intersect($all, $disable); + if (!empty($intersect)) { + // Disable all installers + $this->supportedTypes = array(); + } else { + // Disable specified installers + foreach ($disable as $key => $installer) { + if (is_string($installer) && key_exists($installer, $this->supportedTypes)) { + unset($this->supportedTypes[$installer]); + } + } + } + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php new file mode 100644 index 0000000..c6c1b33 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php @@ -0,0 +1,9 @@ + 'extensions/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php new file mode 100644 index 0000000..9ee7759 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php @@ -0,0 +1,15 @@ + 'components/{$name}/', + 'module' => 'modules/{$name}/', + 'template' => 'templates/{$name}/', + 'plugin' => 'plugins/{$name}/', + 'library' => 'libraries/{$name}/', + ); + + // TODO: Add inflector for mod_ and com_ names +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php new file mode 100644 index 0000000..9cb7b8c --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php @@ -0,0 +1,18 @@ + 'plugins/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php new file mode 100644 index 0000000..36b2f84 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php @@ -0,0 +1,11 @@ + 'site/plugins/{$name}/', + 'field' => 'site/fields/{$name}/', + 'tag' => 'site/tags/{$name}/' + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php new file mode 100644 index 0000000..c5d08c5 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php @@ -0,0 +1,11 @@ + 'IdnoPlugins/{$name}/', + 'theme' => 'Themes/{$name}/', + 'console' => 'ConsolePlugins/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php new file mode 100644 index 0000000..7143e23 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php @@ -0,0 +1,10 @@ + 'cms/plugins/{$name}/', + 'media' => 'cms/media/vendor/{$name}/' + ); +} \ No newline at end of file diff --git a/lib/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php new file mode 100644 index 0000000..dcd6d26 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php @@ -0,0 +1,9 @@ + 'modules/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php new file mode 100644 index 0000000..903143a --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php @@ -0,0 +1,27 @@ + 'plugins/{$name}/', + 'template' => 'templates/{$name}/', + 'document-template' => 'documents/templates/{$name}/', + 'userpanel-module' => 'userpanel/modules/{$name}/', + ); + + /** + * Format package name to CamelCase + */ + public function inflectPackageVars($vars) + { + $vars['name'] = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $vars['name'])); + $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); + $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); + + return $vars; + } + +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php new file mode 100644 index 0000000..be4d53a --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php @@ -0,0 +1,9 @@ + 'libraries/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php new file mode 100644 index 0000000..412c0b5 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php @@ -0,0 +1,10 @@ + 'packages/{$vendor}/{$name}/', + 'theme' => 'public/themes/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php new file mode 100644 index 0000000..47bbd4c --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php @@ -0,0 +1,10 @@ + 'libraries/{$name}/', + 'source' => 'libraries/_source/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php new file mode 100644 index 0000000..9c2e9fb --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php @@ -0,0 +1,9 @@ + 'modules/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php new file mode 100644 index 0000000..5a66460 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php @@ -0,0 +1,16 @@ + 'assets/snippets/{$name}/', + 'plugin' => 'assets/plugins/{$name}/', + 'module' => 'assets/modules/{$name}/', + 'template' => 'assets/templates/{$name}/', + 'lib' => 'assets/lib/{$name}/' + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php new file mode 100644 index 0000000..cf18e94 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php @@ -0,0 +1,11 @@ + 'app/design/frontend/{$name}/', + 'skin' => 'skin/frontend/default/{$name}/', + 'library' => 'lib/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php new file mode 100644 index 0000000..e463756 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php @@ -0,0 +1,37 @@ + 'plugins/{$name}/', + ); + + /** + * Transforms the names + * @param array $vars + * @return array + */ + public function inflectPackageVars($vars) + { + return $this->correctPluginName($vars); + } + + /** + * Change hyphenated names to camelcase + * @param array $vars + * @return array + */ + private function correctPluginName($vars) + { + $camelCasedName = preg_replace_callback('/(-[a-z])/', function ($matches) { + return strtoupper($matches[0][1]); + }, $vars['name']); + $vars['name'] = ucfirst($camelCasedName); + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php new file mode 100644 index 0000000..ca3cfac --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php @@ -0,0 +1,9 @@ + 'app/packages/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/MantisBTInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/MantisBTInstaller.php new file mode 100644 index 0000000..dadb1db --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/MantisBTInstaller.php @@ -0,0 +1,23 @@ + 'plugins/{$name}/', + ); + + /** + * Format package name to CamelCase + */ + public function inflectPackageVars($vars) + { + $vars['name'] = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $vars['name'])); + $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); + $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php new file mode 100644 index 0000000..3e1ce2b --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php @@ -0,0 +1,25 @@ + 'plugins/{$name}/', + 'theme' => 'themes/{$name}/', + ); + + /** + * Format package name of mautic-plugins to CamelCase + */ + public function inflectPackageVars($vars) + { + if ($vars['type'] == 'mautic-plugin') { + $vars['name'] = preg_replace_callback('/(-[a-z])/', function ($matches) { + return strtoupper($matches[0][1]); + }, ucfirst($vars['name'])); + } + + return $vars; + } + +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php new file mode 100644 index 0000000..30a9167 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php @@ -0,0 +1,33 @@ + 'modules/{$name}/', + ); + + /** + * Format package name. + * + * For package type maya-module, cut off a trailing '-module' if present. + * + */ + public function inflectPackageVars($vars) + { + if ($vars['type'] === 'maya-module') { + return $this->inflectModuleVars($vars); + } + + return $vars; + } + + protected function inflectModuleVars($vars) + { + $vars['name'] = preg_replace('/-module$/', '', $vars['name']); + $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); + $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php new file mode 100644 index 0000000..f5a8957 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php @@ -0,0 +1,51 @@ + 'core/', + 'extension' => 'extensions/{$name}/', + 'skin' => 'skins/{$name}/', + ); + + /** + * Format package name. + * + * For package type mediawiki-extension, cut off a trailing '-extension' if present and transform + * to CamelCase keeping existing uppercase chars. + * + * For package type mediawiki-skin, cut off a trailing '-skin' if present. + * + */ + public function inflectPackageVars($vars) + { + + if ($vars['type'] === 'mediawiki-extension') { + return $this->inflectExtensionVars($vars); + } + + if ($vars['type'] === 'mediawiki-skin') { + return $this->inflectSkinVars($vars); + } + + return $vars; + } + + protected function inflectExtensionVars($vars) + { + $vars['name'] = preg_replace('/-extension$/', '', $vars['name']); + $vars['name'] = str_replace('-', ' ', $vars['name']); + $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); + + return $vars; + } + + protected function inflectSkinVars($vars) + { + $vars['name'] = preg_replace('/-skin$/', '', $vars['name']); + + return $vars; + } + +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php new file mode 100644 index 0000000..b7d9703 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php @@ -0,0 +1,119 @@ + 'userfiles/modules/{$install_item_dir}/', + 'module-skin' => 'userfiles/modules/{$install_item_dir}/templates/', + 'template' => 'userfiles/templates/{$install_item_dir}/', + 'element' => 'userfiles/elements/{$install_item_dir}/', + 'vendor' => 'vendor/{$install_item_dir}/', + 'components' => 'components/{$install_item_dir}/' + ); + + /** + * Format package name. + * + * For package type microweber-module, cut off a trailing '-module' if present + * + * For package type microweber-template, cut off a trailing '-template' if present. + * + */ + public function inflectPackageVars($vars) + { + + + if ($this->package->getTargetDir()) { + $vars['install_item_dir'] = $this->package->getTargetDir(); + } else { + $vars['install_item_dir'] = $vars['name']; + if ($vars['type'] === 'microweber-template') { + return $this->inflectTemplateVars($vars); + } + if ($vars['type'] === 'microweber-templates') { + return $this->inflectTemplatesVars($vars); + } + if ($vars['type'] === 'microweber-core') { + return $this->inflectCoreVars($vars); + } + if ($vars['type'] === 'microweber-adapter') { + return $this->inflectCoreVars($vars); + } + if ($vars['type'] === 'microweber-module') { + return $this->inflectModuleVars($vars); + } + if ($vars['type'] === 'microweber-modules') { + return $this->inflectModulesVars($vars); + } + if ($vars['type'] === 'microweber-skin') { + return $this->inflectSkinVars($vars); + } + if ($vars['type'] === 'microweber-element' or $vars['type'] === 'microweber-elements') { + return $this->inflectElementVars($vars); + } + } + + + return $vars; + } + + protected function inflectTemplateVars($vars) + { + $vars['install_item_dir'] = preg_replace('/-template$/', '', $vars['install_item_dir']); + $vars['install_item_dir'] = preg_replace('/template-$/', '', $vars['install_item_dir']); + + return $vars; + } + + protected function inflectTemplatesVars($vars) + { + $vars['install_item_dir'] = preg_replace('/-templates$/', '', $vars['install_item_dir']); + $vars['install_item_dir'] = preg_replace('/templates-$/', '', $vars['install_item_dir']); + + return $vars; + } + + protected function inflectCoreVars($vars) + { + $vars['install_item_dir'] = preg_replace('/-providers$/', '', $vars['install_item_dir']); + $vars['install_item_dir'] = preg_replace('/-provider$/', '', $vars['install_item_dir']); + $vars['install_item_dir'] = preg_replace('/-adapter$/', '', $vars['install_item_dir']); + + return $vars; + } + + protected function inflectModuleVars($vars) + { + $vars['install_item_dir'] = preg_replace('/-module$/', '', $vars['install_item_dir']); + $vars['install_item_dir'] = preg_replace('/module-$/', '', $vars['install_item_dir']); + + return $vars; + } + + protected function inflectModulesVars($vars) + { + $vars['install_item_dir'] = preg_replace('/-modules$/', '', $vars['install_item_dir']); + $vars['install_item_dir'] = preg_replace('/modules-$/', '', $vars['install_item_dir']); + + return $vars; + } + + protected function inflectSkinVars($vars) + { + $vars['install_item_dir'] = preg_replace('/-skin$/', '', $vars['install_item_dir']); + $vars['install_item_dir'] = preg_replace('/skin-$/', '', $vars['install_item_dir']); + + return $vars; + } + + protected function inflectElementVars($vars) + { + $vars['install_item_dir'] = preg_replace('/-elements$/', '', $vars['install_item_dir']); + $vars['install_item_dir'] = preg_replace('/elements-$/', '', $vars['install_item_dir']); + $vars['install_item_dir'] = preg_replace('/-element$/', '', $vars['install_item_dir']); + $vars['install_item_dir'] = preg_replace('/element-$/', '', $vars['install_item_dir']); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php new file mode 100644 index 0000000..0ee140a --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php @@ -0,0 +1,12 @@ + 'core/packages/{$name}/' + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php new file mode 100644 index 0000000..75dbe71 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php @@ -0,0 +1,58 @@ + 'mod/{$name}/', + 'admin_report' => 'admin/report/{$name}/', + 'atto' => 'lib/editor/atto/plugins/{$name}/', + 'tool' => 'admin/tool/{$name}/', + 'assignment' => 'mod/assignment/type/{$name}/', + 'assignsubmission' => 'mod/assign/submission/{$name}/', + 'assignfeedback' => 'mod/assign/feedback/{$name}/', + 'auth' => 'auth/{$name}/', + 'availability' => 'availability/condition/{$name}/', + 'block' => 'blocks/{$name}/', + 'booktool' => 'mod/book/tool/{$name}/', + 'cachestore' => 'cache/stores/{$name}/', + 'cachelock' => 'cache/locks/{$name}/', + 'calendartype' => 'calendar/type/{$name}/', + 'format' => 'course/format/{$name}/', + 'coursereport' => 'course/report/{$name}/', + 'customcertelement' => 'mod/customcert/element/{$name}/', + 'datafield' => 'mod/data/field/{$name}/', + 'datapreset' => 'mod/data/preset/{$name}/', + 'editor' => 'lib/editor/{$name}/', + 'enrol' => 'enrol/{$name}/', + 'filter' => 'filter/{$name}/', + 'gradeexport' => 'grade/export/{$name}/', + 'gradeimport' => 'grade/import/{$name}/', + 'gradereport' => 'grade/report/{$name}/', + 'gradingform' => 'grade/grading/form/{$name}/', + 'local' => 'local/{$name}/', + 'logstore' => 'admin/tool/log/store/{$name}/', + 'ltisource' => 'mod/lti/source/{$name}/', + 'ltiservice' => 'mod/lti/service/{$name}/', + 'message' => 'message/output/{$name}/', + 'mnetservice' => 'mnet/service/{$name}/', + 'plagiarism' => 'plagiarism/{$name}/', + 'portfolio' => 'portfolio/{$name}/', + 'qbehaviour' => 'question/behaviour/{$name}/', + 'qformat' => 'question/format/{$name}/', + 'qtype' => 'question/type/{$name}/', + 'quizaccess' => 'mod/quiz/accessrule/{$name}/', + 'quiz' => 'mod/quiz/report/{$name}/', + 'report' => 'report/{$name}/', + 'repository' => 'repository/{$name}/', + 'scormreport' => 'mod/scorm/report/{$name}/', + 'search' => 'search/engine/{$name}/', + 'theme' => 'theme/{$name}/', + 'tinymce' => 'lib/editor/tinymce/plugins/{$name}/', + 'profilefield' => 'user/profile/field/{$name}/', + 'webservice' => 'webservice/{$name}/', + 'workshopallocation' => 'mod/workshop/allocation/{$name}/', + 'workshopeval' => 'mod/workshop/eval/{$name}/', + 'workshopform' => 'mod/workshop/form/{$name}/' + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php new file mode 100644 index 0000000..08d5dc4 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php @@ -0,0 +1,47 @@ + 'modules/{$name}/', + 'plugin' => 'plugins/{$vendor}/{$name}/', + 'theme' => 'themes/{$name}/' + ); + + /** + * Format package name. + * + * For package type october-plugin, cut off a trailing '-plugin' if present. + * + * For package type october-theme, cut off a trailing '-theme' if present. + * + */ + public function inflectPackageVars($vars) + { + if ($vars['type'] === 'october-plugin') { + return $this->inflectPluginVars($vars); + } + + if ($vars['type'] === 'october-theme') { + return $this->inflectThemeVars($vars); + } + + return $vars; + } + + protected function inflectPluginVars($vars) + { + $vars['name'] = preg_replace('/^oc-|-plugin$/', '', $vars['name']); + $vars['vendor'] = preg_replace('/[^a-z0-9_]/i', '', $vars['vendor']); + + return $vars; + } + + protected function inflectThemeVars($vars) + { + $vars['name'] = preg_replace('/^oc-|-theme$/', '', $vars['name']); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php new file mode 100644 index 0000000..5dd3438 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php @@ -0,0 +1,24 @@ + 'extensions/{$name}/', + 'theme' => 'extensions/themes/{$name}/', + 'translation' => 'extensions/translations/{$name}/', + ); + + /** + * Format package name to lower case and remove ".ontowiki" suffix + */ + public function inflectPackageVars($vars) + { + $vars['name'] = strtolower($vars['name']); + $vars['name'] = preg_replace('/.ontowiki$/', '', $vars['name']); + $vars['name'] = preg_replace('/-theme$/', '', $vars['name']); + $vars['name'] = preg_replace('/-translation$/', '', $vars['name']); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php new file mode 100644 index 0000000..3ca7954 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php @@ -0,0 +1,14 @@ + 'oc-content/plugins/{$name}/', + 'theme' => 'oc-content/themes/{$name}/', + 'language' => 'oc-content/languages/{$name}/', + ); + +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php new file mode 100644 index 0000000..49940ff --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php @@ -0,0 +1,59 @@ +.+)\/.+/'; + + protected $locations = array( + 'module' => 'modules/{$name}/', + 'theme' => 'application/views/{$name}/', + 'out' => 'out/{$name}/', + ); + + /** + * getInstallPath + * + * @param PackageInterface $package + * @param string $frameworkType + * @return void + */ + public function getInstallPath(PackageInterface $package, $frameworkType = '') + { + $installPath = parent::getInstallPath($package, $frameworkType); + $type = $this->package->getType(); + if ($type === 'oxid-module') { + $this->prepareVendorDirectory($installPath); + } + return $installPath; + } + + /** + * prepareVendorDirectory + * + * Makes sure there is a vendormetadata.php file inside + * the vendor folder if there is a vendor folder. + * + * @param string $installPath + * @return void + */ + protected function prepareVendorDirectory($installPath) + { + $matches = ''; + $hasVendorDirectory = preg_match(self::VENDOR_PATTERN, $installPath, $matches); + if (!$hasVendorDirectory) { + return; + } + + $vendorDirectory = $matches['vendor']; + $vendorPath = getcwd() . '/modules/' . $vendorDirectory; + if (!file_exists($vendorPath)) { + mkdir($vendorPath, 0755, true); + } + + $vendorMetaDataPath = $vendorPath . '/vendormetadata.php'; + touch($vendorMetaDataPath); + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php new file mode 100644 index 0000000..170136f --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php @@ -0,0 +1,9 @@ + 'modules/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php new file mode 100644 index 0000000..4e59a8a --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php @@ -0,0 +1,11 @@ + 'bundles/{$name}/', + 'library' => 'libraries/{$name}/', + 'framework' => 'frameworks/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php new file mode 100644 index 0000000..deb2b77 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php @@ -0,0 +1,11 @@ + 'ext/{$vendor}/{$name}/', + 'language' => 'language/{$name}/', + 'style' => 'styles/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php new file mode 100644 index 0000000..4781fa6 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php @@ -0,0 +1,21 @@ + 'plugins/{$name}/', + ); + + /** + * Format package name to CamelCase + */ + public function inflectPackageVars($vars) + { + $vars['name'] = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $vars['name'])); + $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); + $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php new file mode 100644 index 0000000..c17f457 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php @@ -0,0 +1,32 @@ + 'plugins/{$name}/', + ); + + /** + * Format package name to CamelCase + * @param array $vars + * + * @return array + */ + public function inflectPackageVars($vars) + { + $vars['name'] = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $vars['name'])); + $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); + $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php new file mode 100644 index 0000000..903e55f --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php @@ -0,0 +1,29 @@ + '{$name}/' + ); + + /** + * Remove hyphen, "plugin" and format to camelcase + * @param array $vars + * + * @return array + */ + public function inflectPackageVars($vars) + { + $vars['name'] = explode("-", $vars['name']); + foreach ($vars['name'] as $key => $name) { + $vars['name'][$key] = ucfirst($vars['name'][$key]); + if (strcasecmp($name, "Plugin") == 0) { + unset($vars['name'][$key]); + } + } + $vars['name'] = implode("",$vars['name']); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/Plugin.php b/lib/vendor/composer/installers/src/Composer/Installers/Plugin.php new file mode 100644 index 0000000..e60da0e --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/Plugin.php @@ -0,0 +1,27 @@ +installer = new Installer($io, $composer); + $composer->getInstallationManager()->addInstaller($this->installer); + } + + public function deactivate(Composer $composer, IOInterface $io) + { + $composer->getInstallationManager()->removeInstaller($this->installer); + } + + public function uninstall(Composer $composer, IOInterface $io) + { + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php new file mode 100644 index 0000000..dbf85e6 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php @@ -0,0 +1,9 @@ + 'app/Containers/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php new file mode 100644 index 0000000..4c8421e --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php @@ -0,0 +1,10 @@ + 'modules/{$name}/', + 'theme' => 'themes/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php new file mode 100644 index 0000000..77cc3dd --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php @@ -0,0 +1,11 @@ + 'modules/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php new file mode 100644 index 0000000..6551058 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php @@ -0,0 +1,63 @@ + 'app/Modules/{$name}/', + 'theme' => 'themes/{$name}/', + ); + + /** + * Format package name. + * + * @param array $vars + * + * @return array + */ + public function inflectPackageVars($vars) + { + if ($vars['type'] === 'pxcms-module') { + return $this->inflectModuleVars($vars); + } + + if ($vars['type'] === 'pxcms-theme') { + return $this->inflectThemeVars($vars); + } + + return $vars; + } + + /** + * For package type pxcms-module, cut off a trailing '-plugin' if present. + * + * return string + */ + protected function inflectModuleVars($vars) + { + $vars['name'] = str_replace('pxcms-', '', $vars['name']); // strip out pxcms- just incase (legacy) + $vars['name'] = str_replace('module-', '', $vars['name']); // strip out module- + $vars['name'] = preg_replace('/-module$/', '', $vars['name']); // strip out -module + $vars['name'] = str_replace('-', '_', $vars['name']); // make -'s be _'s + $vars['name'] = ucwords($vars['name']); // make module name camelcased + + return $vars; + } + + + /** + * For package type pxcms-module, cut off a trailing '-plugin' if present. + * + * return string + */ + protected function inflectThemeVars($vars) + { + $vars['name'] = str_replace('pxcms-', '', $vars['name']); // strip out pxcms- just incase (legacy) + $vars['name'] = str_replace('theme-', '', $vars['name']); // strip out theme- + $vars['name'] = preg_replace('/-theme$/', '', $vars['name']); // strip out -theme + $vars['name'] = str_replace('-', '_', $vars['name']); // make -'s be _'s + $vars['name'] = ucwords($vars['name']); // make module name camelcased + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php new file mode 100644 index 0000000..0f78b5c --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php @@ -0,0 +1,24 @@ + 'src/{$name}/' + ); + + /** + * Format package name to CamelCase + */ + public function inflectPackageVars($vars) + { + $nameParts = explode('/', $vars['name']); + foreach ($nameParts as &$value) { + $value = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $value)); + $value = str_replace(array('-', '_'), ' ', $value); + $value = str_replace(' ', '', ucwords($value)); + } + $vars['name'] = implode('/', $nameParts); + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php new file mode 100644 index 0000000..252c733 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php @@ -0,0 +1,10 @@ + 'themes/{$name}/', + 'plugin' => 'plugins/{$name}/' + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/Redaxo5Installer.php b/lib/vendor/composer/installers/src/Composer/Installers/Redaxo5Installer.php new file mode 100644 index 0000000..23a2034 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/Redaxo5Installer.php @@ -0,0 +1,10 @@ + 'redaxo/src/addons/{$name}/', + 'bestyle-plugin' => 'redaxo/src/addons/be_style/plugins/{$name}/' + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php new file mode 100644 index 0000000..0954457 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php @@ -0,0 +1,10 @@ + 'redaxo/include/addons/{$name}/', + 'bestyle-plugin' => 'redaxo/include/addons/be_style/plugins/{$name}/' + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php new file mode 100644 index 0000000..d8d795b --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php @@ -0,0 +1,22 @@ + 'plugins/{$name}/', + ); + + /** + * Lowercase name and changes the name to a underscores + * + * @param array $vars + * @return array + */ + public function inflectPackageVars($vars) + { + $vars['name'] = strtolower(str_replace('-', '_', $vars['name'])); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php new file mode 100644 index 0000000..1acd3b1 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php @@ -0,0 +1,10 @@ + 'Sources/{$name}/', + 'theme' => 'Themes/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php new file mode 100644 index 0000000..7d20d27 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php @@ -0,0 +1,60 @@ + 'engine/Shopware/Plugins/Local/Backend/{$name}/', + 'core-plugin' => 'engine/Shopware/Plugins/Local/Core/{$name}/', + 'frontend-plugin' => 'engine/Shopware/Plugins/Local/Frontend/{$name}/', + 'theme' => 'templates/{$name}/', + 'plugin' => 'custom/plugins/{$name}/', + 'frontend-theme' => 'themes/Frontend/{$name}/', + ); + + /** + * Transforms the names + * @param array $vars + * @return array + */ + public function inflectPackageVars($vars) + { + if ($vars['type'] === 'shopware-theme') { + return $this->correctThemeName($vars); + } + + return $this->correctPluginName($vars); + } + + /** + * Changes the name to a camelcased combination of vendor and name + * @param array $vars + * @return array + */ + private function correctPluginName($vars) + { + $camelCasedName = preg_replace_callback('/(-[a-z])/', function ($matches) { + return strtoupper($matches[0][1]); + }, $vars['name']); + + $vars['name'] = ucfirst($vars['vendor']) . ucfirst($camelCasedName); + + return $vars; + } + + /** + * Changes the name to a underscore separated name + * @param array $vars + * @return array + */ + private function correctThemeName($vars) + { + $vars['name'] = str_replace('-', '_', $vars['name']); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php new file mode 100644 index 0000000..81910e9 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php @@ -0,0 +1,35 @@ + '{$name}/', + 'theme' => 'themes/{$name}/', + ); + + /** + * Return the install path based on package type. + * + * Relies on built-in BaseInstaller behaviour with one exception: silverstripe/framework + * must be installed to 'sapphire' and not 'framework' if the version is <3.0.0 + * + * @param PackageInterface $package + * @param string $frameworkType + * @return string + */ + public function getInstallPath(PackageInterface $package, $frameworkType = '') + { + if ( + $package->getName() == 'silverstripe/framework' + && preg_match('/^\d+\.\d+\.\d+/', $package->getVersion()) + && version_compare($package->getVersion(), '2.999.999') < 0 + ) { + return $this->templatePath($this->locations['module'], array('name' => 'sapphire')); + } + + return parent::getInstallPath($package, $frameworkType); + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php new file mode 100644 index 0000000..762d94c --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php @@ -0,0 +1,25 @@ + 'modules/{$vendor}/{$name}/', + 'plugin' => 'plugins/{$vendor}/{$name}/' + ); + + public function inflectPackageVars($vars) + { + return $this->parseVars($vars); + } + + protected function parseVars($vars) + { + $vars['vendor'] = strtolower($vars['vendor']) == 'sitedirect' ? 'SiteDirect' : $vars['vendor']; + $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); + $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php new file mode 100644 index 0000000..83ef9d0 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php @@ -0,0 +1,49 @@ + 'app/modules/{$name}/', + 'theme' => 'themes/{$name}/', + ); + + /** + * Format module name. + * + * Strip `sydes-` prefix and a trailing '-theme' or '-module' from package name if present. + * + * @param array @vars + * + * @return array + */ + public function inflectPackageVars($vars) + { + if ($vars['type'] == 'sydes-module') { + return $this->inflectModuleVars($vars); + } + + if ($vars['type'] === 'sydes-theme') { + return $this->inflectThemeVars($vars); + } + + return $vars; + } + + public function inflectModuleVars($vars) + { + $vars['name'] = preg_replace('/(^sydes-|-module$)/i', '', $vars['name']); + $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); + $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); + + return $vars; + } + + protected function inflectThemeVars($vars) + { + $vars['name'] = preg_replace('/(^sydes-|-theme$)/', '', $vars['name']); + $vars['name'] = strtolower($vars['name']); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/SyliusInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/SyliusInstaller.php new file mode 100644 index 0000000..4357a35 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/SyliusInstaller.php @@ -0,0 +1,9 @@ + 'themes/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php b/lib/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php new file mode 100644 index 0000000..1675c4f --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php @@ -0,0 +1,26 @@ + + */ +class Symfony1Installer extends BaseInstaller +{ + protected $locations = array( + 'plugin' => 'plugins/{$name}/', + ); + + /** + * Format package name to CamelCase + */ + public function inflectPackageVars($vars) + { + $vars['name'] = preg_replace_callback('/(-[a-z])/', function ($matches) { + return strtoupper($matches[0][1]); + }, $vars['name']); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php new file mode 100644 index 0000000..b1663e8 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php @@ -0,0 +1,16 @@ + + */ +class TYPO3CmsInstaller extends BaseInstaller +{ + protected $locations = array( + 'extension' => 'typo3conf/ext/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php new file mode 100644 index 0000000..42572f4 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php @@ -0,0 +1,38 @@ + 'Packages/Application/{$name}/', + 'framework' => 'Packages/Framework/{$name}/', + 'plugin' => 'Packages/Plugins/{$name}/', + 'site' => 'Packages/Sites/{$name}/', + 'boilerplate' => 'Packages/Boilerplates/{$name}/', + 'build' => 'Build/{$name}/', + ); + + /** + * Modify the package name to be a TYPO3 Flow style key. + * + * @param array $vars + * @return array + */ + public function inflectPackageVars($vars) + { + $autoload = $this->package->getAutoload(); + if (isset($autoload['psr-0']) && is_array($autoload['psr-0'])) { + $namespace = key($autoload['psr-0']); + $vars['name'] = str_replace('\\', '.', $namespace); + } + if (isset($autoload['psr-4']) && is_array($autoload['psr-4'])) { + $namespace = key($autoload['psr-4']); + $vars['name'] = rtrim(str_replace('\\', '.', $namespace), '.'); + } + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/TaoInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/TaoInstaller.php new file mode 100644 index 0000000..108def1 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/TaoInstaller.php @@ -0,0 +1,12 @@ + '{$name}' + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php new file mode 100644 index 0000000..158af52 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php @@ -0,0 +1,12 @@ + 'local/modules/{$name}/', + 'frontoffice-template' => 'templates/frontOffice/{$name}/', + 'backoffice-template' => 'templates/backOffice/{$name}/', + 'email-template' => 'templates/email/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php new file mode 100644 index 0000000..7c0113b --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php @@ -0,0 +1,14 @@ + + */ + class TuskInstaller extends BaseInstaller + { + protected $locations = array( + 'task' => '.tusk/tasks/{$name}/', + 'command' => '.tusk/commands/{$name}/', + 'asset' => 'assets/tusk/{$name}/', + ); + } diff --git a/lib/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php new file mode 100644 index 0000000..fcb414a --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php @@ -0,0 +1,9 @@ + 'app/sprinkles/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php new file mode 100644 index 0000000..24ca645 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php @@ -0,0 +1,10 @@ + 'plugins/{$name}/', + 'theme' => 'themes/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php new file mode 100644 index 0000000..7d90c5e --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php @@ -0,0 +1,49 @@ + 'src/{$vendor}/{$name}/', + 'theme' => 'themes/{$name}/' + ); + + /** + * Format package name. + * + * For package type vgmcp-bundle, cut off a trailing '-bundle' if present. + * + * For package type vgmcp-theme, cut off a trailing '-theme' if present. + * + */ + public function inflectPackageVars($vars) + { + if ($vars['type'] === 'vgmcp-bundle') { + return $this->inflectPluginVars($vars); + } + + if ($vars['type'] === 'vgmcp-theme') { + return $this->inflectThemeVars($vars); + } + + return $vars; + } + + protected function inflectPluginVars($vars) + { + $vars['name'] = preg_replace('/-bundle$/', '', $vars['name']); + $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); + $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); + + return $vars; + } + + protected function inflectThemeVars($vars) + { + $vars['name'] = preg_replace('/-theme$/', '', $vars['name']); + $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); + $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); + + return $vars; + } +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php new file mode 100644 index 0000000..b65dbba --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php @@ -0,0 +1,21 @@ + 'modules/addons/{$vendor}_{$name}/', + 'fraud' => 'modules/fraud/{$vendor}_{$name}/', + 'gateways' => 'modules/gateways/{$vendor}_{$name}/', + 'notifications' => 'modules/notifications/{$vendor}_{$name}/', + 'registrars' => 'modules/registrars/{$vendor}_{$name}/', + 'reports' => 'modules/reports/{$vendor}_{$name}/', + 'security' => 'modules/security/{$vendor}_{$name}/', + 'servers' => 'modules/servers/{$vendor}_{$name}/', + 'social' => 'modules/social/{$vendor}_{$name}/', + 'support' => 'modules/support/{$vendor}_{$name}/', + 'templates' => 'templates/{$vendor}_{$name}/', + 'includes' => 'includes/{$vendor}_{$name}/' + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php new file mode 100644 index 0000000..cb38788 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php @@ -0,0 +1,9 @@ + 'wolf/plugins/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php new file mode 100644 index 0000000..91c46ad --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php @@ -0,0 +1,12 @@ + 'wp-content/plugins/{$name}/', + 'theme' => 'wp-content/themes/{$name}/', + 'muplugin' => 'wp-content/mu-plugins/{$name}/', + 'dropin' => 'wp-content/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php new file mode 100644 index 0000000..27f429f --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php @@ -0,0 +1,32 @@ + 'module/{$name}/', + ); + + /** + * Format package name to CamelCase + * @param array $vars + * + * @return array + */ + public function inflectPackageVars($vars) + { + $vars['name'] = strtolower(preg_replace('/(?<=\\w)([A-Z])/', '_\\1', $vars['name'])); + $vars['name'] = str_replace(array('-', '_'), ' ', $vars['name']); + $vars['name'] = str_replace(' ', '', ucwords($vars['name'])); + + return $vars; + } +} \ No newline at end of file diff --git a/lib/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php new file mode 100644 index 0000000..bde9bc8 --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php @@ -0,0 +1,11 @@ + 'library/{$name}/', + 'extra' => 'extras/library/{$name}/', + 'module' => 'module/{$name}/', + ); +} diff --git a/lib/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php b/lib/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php new file mode 100644 index 0000000..56cdf5d --- /dev/null +++ b/lib/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php @@ -0,0 +1,10 @@ + 'modules/{$vendor}-{$name}/', + 'theme' => 'themes/{$vendor}-{$name}/' + ); +} diff --git a/lib/vendor/composer/installers/src/bootstrap.php b/lib/vendor/composer/installers/src/bootstrap.php new file mode 100644 index 0000000..0de276e --- /dev/null +++ b/lib/vendor/composer/installers/src/bootstrap.php @@ -0,0 +1,13 @@ +instantiate(\My\ClassName\Here::class); +``` + +## Contributing + +Please read the [CONTRIBUTING.md](CONTRIBUTING.md) contents if you wish to help out! + +## Credits + +This library was migrated from [ocramius/instantiator](https://github.com/Ocramius/Instantiator), which +has been donated to the doctrine organization, and which is now deprecated in favour of this package. diff --git a/lib/vendor/doctrine/instantiator/composer.json b/lib/vendor/doctrine/instantiator/composer.json new file mode 100644 index 0000000..9002a91 --- /dev/null +++ b/lib/vendor/doctrine/instantiator/composer.json @@ -0,0 +1,47 @@ +{ + "name": "doctrine/instantiator", + "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", + "type": "library", + "license": "MIT", + "homepage": "https://www.doctrine-project.org/projects/instantiator.html", + "keywords": [ + "instantiate", + "constructor" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "http://ocramius.github.com/" + } + ], + "require": { + "php": "^7.1" + }, + "require-dev": { + "ext-phar": "*", + "ext-pdo": "*", + "doctrine/coding-standard": "^6.0", + "phpbench/phpbench": "^0.13", + "phpstan/phpstan-phpunit": "^0.11", + "phpstan/phpstan-shim": "^0.11", + "phpunit/phpunit": "^7.0" + }, + "autoload": { + "psr-4": { + "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + } + }, + "autoload-dev": { + "psr-0": { + "DoctrineTest\\InstantiatorPerformance\\": "tests", + "DoctrineTest\\InstantiatorTest\\": "tests", + "DoctrineTest\\InstantiatorTestAsset\\": "tests" + } + }, + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + } +} diff --git a/lib/vendor/doctrine/instantiator/docs/en/index.rst b/lib/vendor/doctrine/instantiator/docs/en/index.rst new file mode 100644 index 0000000..0c85da0 --- /dev/null +++ b/lib/vendor/doctrine/instantiator/docs/en/index.rst @@ -0,0 +1,68 @@ +Introduction +============ + +This library provides a way of avoiding usage of constructors when instantiating PHP classes. + +Installation +============ + +The suggested installation method is via `composer`_: + +.. code-block:: console + + $ composer require doctrine/instantiator + +Usage +===== + +The instantiator is able to create new instances of any class without +using the constructor or any API of the class itself: + +.. code-block:: php + + instantiate(User::class); + +Contributing +============ + +- Follow the `Doctrine Coding Standard`_ +- The project will follow strict `object calisthenics`_ +- Any contribution must provide tests for additional introduced + conditions +- Any un-confirmed issue needs a failing test case before being + accepted +- Pull requests must be sent from a new hotfix/feature branch, not from + ``master``. + +Testing +======= + +The PHPUnit version to be used is the one installed as a dev- dependency +via composer: + +.. code-block:: console + + $ ./vendor/bin/phpunit + +Accepted coverage for new contributions is 80%. Any contribution not +satisfying this requirement won’t be merged. + +Credits +======= + +This library was migrated from `ocramius/instantiator`_, which has been +donated to the doctrine organization, and which is now deprecated in +favour of this package. + +.. _composer: https://getcomposer.org/ +.. _CONTRIBUTING.md: CONTRIBUTING.md +.. _ocramius/instantiator: https://github.com/Ocramius/Instantiator +.. _Doctrine Coding Standard: https://github.com/doctrine/coding-standard +.. _object calisthenics: http://www.slideshare.net/guilhermeblanco/object-calisthenics-applied-to-php diff --git a/lib/vendor/doctrine/instantiator/docs/en/sidebar.rst b/lib/vendor/doctrine/instantiator/docs/en/sidebar.rst new file mode 100644 index 0000000..0c36479 --- /dev/null +++ b/lib/vendor/doctrine/instantiator/docs/en/sidebar.rst @@ -0,0 +1,4 @@ +.. toctree:: + :depth: 3 + + index diff --git a/lib/vendor/doctrine/instantiator/phpbench.json b/lib/vendor/doctrine/instantiator/phpbench.json new file mode 100644 index 0000000..fce5dd6 --- /dev/null +++ b/lib/vendor/doctrine/instantiator/phpbench.json @@ -0,0 +1,4 @@ +{ + "bootstrap": "vendor/autoload.php", + "path": "tests/DoctrineTest/InstantiatorPerformance" +} diff --git a/lib/vendor/doctrine/instantiator/phpcs.xml.dist b/lib/vendor/doctrine/instantiator/phpcs.xml.dist new file mode 100644 index 0000000..1fcac4a --- /dev/null +++ b/lib/vendor/doctrine/instantiator/phpcs.xml.dist @@ -0,0 +1,35 @@ + + + + + + + + + + + + src + tests + + + + + + + + + + tests/DoctrineTest/InstantiatorTestAsset/AbstractClassAsset.php + + + + src/Doctrine/Instantiator/Exception/UnexpectedValueException.php + src/Doctrine/Instantiator/Exception/InvalidArgumentException.php + + + + src/Doctrine/Instantiator/Exception/ExceptionInterface.php + src/Doctrine/Instantiator/InstantiatorInterface.php + + diff --git a/lib/vendor/doctrine/instantiator/phpstan.neon.dist b/lib/vendor/doctrine/instantiator/phpstan.neon.dist new file mode 100644 index 0000000..ecc38ef --- /dev/null +++ b/lib/vendor/doctrine/instantiator/phpstan.neon.dist @@ -0,0 +1,19 @@ +includes: + - vendor/phpstan/phpstan-phpunit/extension.neon + - vendor/phpstan/phpstan-phpunit/rules.neon + +parameters: + level: max + paths: + - src + - tests + + ignoreErrors: + - + message: '#::__construct\(\) does not call parent constructor from#' + path: '*/tests/DoctrineTest/InstantiatorTestAsset/*.php' + + # dynamic properties confuse static analysis + - + message: '#Access to an undefined property object::\$foo\.#' + path: '*/tests/DoctrineTest/InstantiatorTest/InstantiatorTest.php' diff --git a/lib/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php b/lib/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php new file mode 100644 index 0000000..e6a5195 --- /dev/null +++ b/lib/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php @@ -0,0 +1,12 @@ += 50400 && trait_exists($className)) { + return new self(sprintf('The provided type "%s" is a trait, and can not be instantiated', $className)); + } + + return new self(sprintf('The provided class "%s" does not exist', $className)); + } + + public static function fromAbstractClass(ReflectionClass $reflectionClass) : self + { + return new self(sprintf( + 'The provided class "%s" is abstract, and can not be instantiated', + $reflectionClass->getName() + )); + } +} diff --git a/lib/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/UnexpectedValueException.php b/lib/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/UnexpectedValueException.php new file mode 100644 index 0000000..d946731 --- /dev/null +++ b/lib/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/UnexpectedValueException.php @@ -0,0 +1,48 @@ +getName() + ), + 0, + $exception + ); + } + + public static function fromUncleanUnSerialization( + ReflectionClass $reflectionClass, + string $errorString, + int $errorCode, + string $errorFile, + int $errorLine + ) : self { + return new self( + sprintf( + 'Could not produce an instance of "%s" via un-serialization, since an error was triggered ' + . 'in file "%s" at line "%d"', + $reflectionClass->getName(), + $errorFile, + $errorLine + ), + 0, + new Exception($errorString, $errorCode) + ); + } +} diff --git a/lib/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Instantiator.php b/lib/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Instantiator.php new file mode 100644 index 0000000..4364190 --- /dev/null +++ b/lib/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Instantiator.php @@ -0,0 +1,198 @@ +buildAndCacheFromFactory($className); + } + + /** + * Builds the requested object and caches it in static properties for performance + * + * @return object + */ + private function buildAndCacheFromFactory(string $className) + { + $factory = self::$cachedInstantiators[$className] = $this->buildFactory($className); + $instance = $factory(); + + if ($this->isSafeToClone(new ReflectionClass($instance))) { + self::$cachedCloneables[$className] = clone $instance; + } + + return $instance; + } + + /** + * Builds a callable capable of instantiating the given $className without + * invoking its constructor. + * + * @throws InvalidArgumentException + * @throws UnexpectedValueException + * @throws ReflectionException + */ + private function buildFactory(string $className) : callable + { + $reflectionClass = $this->getReflectionClass($className); + + if ($this->isInstantiableViaReflection($reflectionClass)) { + return [$reflectionClass, 'newInstanceWithoutConstructor']; + } + + $serializedString = sprintf( + '%s:%d:"%s":0:{}', + self::SERIALIZATION_FORMAT_AVOID_UNSERIALIZER, + strlen($className), + $className + ); + + $this->checkIfUnSerializationIsSupported($reflectionClass, $serializedString); + + return static function () use ($serializedString) { + return unserialize($serializedString); + }; + } + + /** + * @param string $className + * + * @throws InvalidArgumentException + * @throws ReflectionException + */ + private function getReflectionClass($className) : ReflectionClass + { + if (! class_exists($className)) { + throw InvalidArgumentException::fromNonExistingClass($className); + } + + $reflection = new ReflectionClass($className); + + if ($reflection->isAbstract()) { + throw InvalidArgumentException::fromAbstractClass($reflection); + } + + return $reflection; + } + + /** + * @throws UnexpectedValueException + */ + private function checkIfUnSerializationIsSupported(ReflectionClass $reflectionClass, string $serializedString) : void + { + set_error_handler(static function ($code, $message, $file, $line) use ($reflectionClass, & $error) : void { + $error = UnexpectedValueException::fromUncleanUnSerialization( + $reflectionClass, + $message, + $code, + $file, + $line + ); + }); + + try { + $this->attemptInstantiationViaUnSerialization($reflectionClass, $serializedString); + } finally { + restore_error_handler(); + } + + if ($error) { + throw $error; + } + } + + /** + * @throws UnexpectedValueException + */ + private function attemptInstantiationViaUnSerialization(ReflectionClass $reflectionClass, string $serializedString) : void + { + try { + unserialize($serializedString); + } catch (Exception $exception) { + throw UnexpectedValueException::fromSerializationTriggeredException($reflectionClass, $exception); + } + } + + private function isInstantiableViaReflection(ReflectionClass $reflectionClass) : bool + { + return ! ($this->hasInternalAncestors($reflectionClass) && $reflectionClass->isFinal()); + } + + /** + * Verifies whether the given class is to be considered internal + */ + private function hasInternalAncestors(ReflectionClass $reflectionClass) : bool + { + do { + if ($reflectionClass->isInternal()) { + return true; + } + + $reflectionClass = $reflectionClass->getParentClass(); + } while ($reflectionClass); + + return false; + } + + /** + * Checks if a class is cloneable + * + * Classes implementing `__clone` cannot be safely cloned, as that may cause side-effects. + */ + private function isSafeToClone(ReflectionClass $reflection) : bool + { + return $reflection->isCloneable() && ! $reflection->hasMethod('__clone'); + } +} diff --git a/lib/vendor/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.php b/lib/vendor/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.php new file mode 100644 index 0000000..95299f4 --- /dev/null +++ b/lib/vendor/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.php @@ -0,0 +1,20 @@ + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + + diff --git a/lib/vendor/lexpress/doctrine1/UPGRADE_TO_1_2 b/lib/vendor/lexpress/doctrine1/UPGRADE_TO_1_2 new file mode 100644 index 0000000..ef78cbb --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/UPGRADE_TO_1_2 @@ -0,0 +1,983 @@ +# Upgrade from 1.1 to 1.2 + +This document details the changes made to Doctrine 1.2 to make it easier for you +to upgrade your projects to use this version. + +## Removed Attribute String Support + +The string support of `Doctrine_Configurable::getAttribute()` and +`Doctrine_Configurable::setAttribute()` have been removed. + +The reason is that the performance of this simple convenience feature is +significant and it is totally unneeded. + +The following code is no longer supported. + + [php] + $connection->setAttribute('use_native_enum', true); + +You must now always use the following code. + + [php] + $connection->setAttribute(Doctrine_Core::ATTR_USE_NATIVE_ENUM, true); + +## Removed all Deprecated Functions + +Removed all functions labeled `@deprecated` in the doc blocks. + +Affected Classes + +* Doctrine_Query +* Doctrine_Query_Abstract + +## Renamed Methods + +* Doctrine_Query_Abstract::getSql() to getSqlQuery() +* Doctrine_Search_Query::getSql() to getSqlQuery() +* Doctrine_Query_Abstract::*getCountQuery +* +* +* +* +* +() to getCountSqlQuery() +* Doctrine_RawSql::getCountQuery() to getCountSqlQuery() + +## Added ability to configure table class + +Added ability to specify the base `Doctrine_Table` class to use if no custom +`UserModelTable` class exists. + + [php] + $manager->setAttribute(Doctrine_Core::ATTR_TABLE_CLASS, 'MyTable'); + +Now just make sure the class exists somewhere and is loaded. + + [php] + class MyTable extends Doctrine_Table + { + + } + +This attribute value will be used for the following new option if you don't +specify it. + + [php] + $builder = new Doctrine_Import_Builder(); + $builder->setOption('baseTableClassName', 'MyBaseTable'); + +## Added ability to configure query class + +Before Doctrine 1.2 it was hard coded internally to always use the +`Doctrine_Query` class whenever you instantiate a new query. Now you can +configure which class this is to use by setting the `Doctrine_Core::ATTR_QUERY_CLASS` +attribute. + + [php] + class MyQuery extends Doctrine_Query + { + + } + + $manager->setAttribute(Doctrine_Core::ATTR_QUERY_CLASS, 'MyQuery'); + + $q = Doctrine_Query::create(); + + echo get_class($q); // MyQuery + +## Changed Doctrine_Parser_Xml::arrayToXml() to be static + +Now the `arrayToXml()` method can be called directly because it is static. + + [php] + $array = array( + 'key1' => 'value', + 'key2' => 'value' + ); + $xml = Doctrine_Parser_Xml::arrayToXml($array); + +## Refactored Migrations to better handle multiple connections + +Now when working with `Doctrine_Migration` instance you can specify as the +second argument to the constructor the connection instance to use for the +migrations. + +Migrations for different databases should be handled with a different set of +migration classes. + +Previous method of finding connection based on the table name is flawed since +databases could have the same table name multiple times. + + [php] + $conn = Doctrine_Manager::connection(); + $migration = new Doctrine_Migration('/path/to/migrations', $conn); + +## Added option for save cascading + +Added a new attribute to control whether cascading save operations are done by +default. Previous to Doctrine 1.2 they were always cascaded. + +As of 1.2 you have the option to disable cascading saves and will only cascade +if the record is dirty. The cost of this is that you can't cascade and save +records who are dirty that are more then one level deep in the hierarchy. + +See: http://trac.doctrine-project.org/ticket/1623 + +You can disable cascading saves with the following code. + + [php] + $manager->setAttribute(Doctrine_Core::ATTR_CASCADE_SAVES, false); + +Disabling this will increase performance significantly when saving objects. + +## Added Doctrine_Core::setPath() + +Now you can specify the path to your Doctrine libraries if Doctrine.php is +outside of the location of your libraries. + +So if `Doctrine.php` is located at `/path/to/Doctrine.php` and the actual +libraries are at `/path/to/the/doctrine/libs` you would need to do the +following. + + [php] + Doctrine_Core::setPath('/path/to/the/doctrine/libs'); + +## Ability to clear an individual reference + +Previously the `Doctrine_Record::clearRelated()` would only allow the clearing +of ALL references. It will now accept a relationship name and you can clear an +individual reference. + + [php] + $user->clearRelated('Phonenumber'); + +## Check related exists + +Often you want to check if a relationship exists in the database, but if it +doesn't exist you get a newly created blank relationship that will try to be +saved when you call save on the parent record. Use the new `relatedExists()` +method to check to avoid this behavior. + + [php] + if ($user->relatedExists('Profile')) { + // do something if the user has a profile + } + +## Reverse Engineered Columns + +If Doctrine does not recognize a column from a database when reverse engineering +a schema, instead of throwing an exception, it will default to a string. + +This allows custom column types or proprietary column types to be reverse +engineered without stopping the schema from being built completely. + +## Oracle Adapter Persistent Connections + +The `Doctrine_Adapter_Oracle` now will use persistent connections if specified. + + [php] + $info = array( + 'oracle:dbname=SID;charset=NLS_CHARACTERSET;persistent=true', + 'usr', + 'pass' + ); + + Doctrine_Manager::connection($info, 'conn_name'); + +## New Class/File Prefix Option for Model Builder + +You can now set a prefix for your generated models and choose to not have the +generated filename include that prefix as well. + + [php] + $builder = new Doctrine_Import_Builder(); + $builder->setOption('classPrefixFiles', false); + $builder->setOption('classPrefix', 'MyClassPrefix_'); + +Without the first option you'd get a file like `MyClassPrefix_ModelName.php` but +now you will get `ModelName.php` with a class named `MyClassPrefix_ModelName` +inside. + +## Expanded Magic Finders to Multiple Fields + +You can now `findBy` multiple fields and specify conditions between the fields. + + [php] + $user = $userTable->findOneByUsernameAndPassword('jwage', md5('changeme')); + +Or you could do something like the following and find admin users and moderator +users. + + [php] + $users = $userTable->findByIsAdminOrIsModerator(true, true); + +You can mix the conditions. + + [php] + $users = $userTable->findByIsAdminAndIsModeratorOrIsSuperAdmin(true, true, true); + +> **CAUTION** +> These are very limited magic finders and it is always recommended to expand +> your queries to be manually written DQL queries. These methods are meant for +> only quickly accessing single records, no relationships, and are good for +> prototyping code quickly. + +## Custom Collection Class + +You can now specify a custom child class to use for all collections inside +Doctrine. + + [php] + $manager->setAttribute(Doctrine_Core::ATTR_COLLECTION_CLASS, 'MyCollection'); + + $phonenumbers = $user->Phonenumbers; + echo get_class($phonenumbers); // MyCollection + +Now define the simple child class. + + [php] + class MyCollection extends Doctrine_Collection + { + + } + +This option can be set at the manager, connection and table levels. + +## Custom Hydrators + +As of Doctrine 1.2 it is now possible to register your own custom data +hydrators. The core hydration process has been decoupled to proper drivers and +now you can register your own to handle the hydration process. + +First lets register our custom hydrator class. + + [php] + $manager->registerHydrator('MyHydrator', 'Doctrine_Hydrator_MyHydrator'); + +So now we need to define a hydrator class named `MyHydrator` and it must +implement a method named `hydrateResultSet($stmt)` method which accepts a +query statement object. + + [php] + class Doctrine_Hydrator_MyHydrator extends Doctrine_Hydrator_Abstract + { + public function hydrateResultSet($stmt) + { + return $stmt->fetchAll(PDO::FETCH_ASSOC); + } + } + +Now you can run a query like the following which would use the new `MyHydrator`. + + [php] + $q->execute(array(), 'MyHydrator'); + +## Custom Connections + +You can now write and register your own custom Doctrine connection drivers and +adapters. + + [php] + class Doctrine_Connection_Test extends Doctrine_Connection_Common + { + } + + class Doctrine_Adapter_Test implements Doctrine_Adapter_Interface + { + // ... all the methods defined in the interface + } + +Now we can register this with Doctrine so we can utilize it as our connection. + + [php] + $manager->registerConnectionDriver('test', 'Doctrine_Connection_Test'); + +Now you can utilize that type of connection in your DSN when connecting. + + [php] + $conn = $manager->openConnection('test://username:password@localhost/dbname'); + +Now if we were to check what classes are used for the connection you will notice +that they are the classes we defined above. + + [php] + echo get_class($conn); // Doctrine_Connection_Test + echo get_class($conn->getDbh()); // Doctrine_Adapter_Test + +## Doctrine Extensions + +Doctrine now has support for creating, loading and testing extensions in to your +projects. + +First we need to simply tell `Doctrine` where the extensions are being loaded +from. + + [php] + Doctrine_Core::setExtensionsPath('/path/to/extensions'); + +Now we can check out one of the first available extensions in to our extensions +directory and then register it. + + $ svn co http://svn.doctrine-project.org/extensions/Sortable/branches/1.2-1.0/ /path/to/extensions/Sortable + +The directory structure of this extension looks like the following. + + Sortable/ + lib/ + Doctrine/ + Template/ + Listener/ + Sortable.php + Sortable.php + tests/ + run.php + Template/ + SortableTestCase.php + +You can even run the tests that come bundled with it. We just need to tell your +CLI where your Doctrine code is. + + $ export DOCTRINE_DIR=/path/to/doctrine + +> **NOTE** +> The above path to Doctrine must be the path to the main folder, not just the +> lib folder. In order to run the tests it must have access to the `tests` +> directory included with Doctrine. + +Now you can run the tests included. + + $ cd /path/to/extensions/Sortable/tests + $ php run.php + +It should output something like the following. + + Doctrine Unit Tests + =================== + Doctrine_Template_Sortable_TestCase.............................................passed + + Tested: 1 test cases. + Successes: 26 passes. + Failures: 0 fails. + Number of new Failures: 0 + Number of fixed Failures: 0 + + Tests ran in 1 seconds and used 13024.9414062 KB of memory + +Now if you want to use the extension in your project you will need register the +extension with Doctrine and setup the extension autoloading mechanism. + +First lets setup the extension autoloading. + + [php] + spl_autoload_register(array('Doctrine', 'extensionsAutoload')); + +Now you can register the extension and the classes inside that extension will be +autoloaded. + + [php] + $manager->registerExtension('Sortable'); + +> **NOTE** +> If you need to register an extension from a different location you can specify +> the full path to the extension directory as the second argument to the +> `registerExtension()` method. + +## Generator Cascading Delete Configuration + +It is now possible to configure the cascading delete operation of a +`Doctrine_Record_Generator`. For example you can now configure the `I18n` +behavior to use app level cascade deletes instead of database level. + + [yml] + Article: + actAs: + I18n: + fields: [title, body] + appLevelDelete: true + columns: + title: string(255) + body: clob + +You can also completely disable cascading deletes by using the `cascadeDelete` +option and setting it to `false.` + +## Column Aggregation Key Column + +The column aggregation key column is now automatically indexed. + + [yml] + User: + tableName: users + columns: + username: string(255) + password: string(255) + + Employee: + inheritance: + extends: User + type: column_aggregation + +The above schema would add a `type` column to the `User` model. This is a flag +tell Doctrine which subclass each record in the database belongs to. This column +is now automatically indexed where before it was not. + + [sql] + CREATE TABLE users (id INTEGER PRIMARY KEY AUTOINCREMENT, username VARCHAR(255), password VARCHAR(255), type VARCHAR(255)); + CREATE INDEX type_idx ON users (type); + +## On Demand Hydration + +You can now utilize a new hydration mode which utilizes much less memory. It only +hydrates one object in to memory at a time. So it uses less memory and is faster +for larger results. + + [php] + // Returns instance of Doctrine_Collection_OnDemand + $result = $q->execute(array(), Doctrine_Core::HYDRATE_ON_DEMAND); + foreach ($result as $obj) { + // ... + } + +`Doctrine_Collection_OnDemand` hydrates each object one at a time as you iterate +over it. + +## Aggregate Values Hydration + +Now aggregate/calculated values can only be found in the root component of your +queries. Previously they could be found in both the root component and the +relationship. This causes lots of problems, for example this query. + + [php] + $master = Doctrine_Query::create() + ->select('m.*, s.bar AS joe') + ->from('Ticket_DC24_Master m') + ->innerJoin('m.Ticket_DC24_Servant s') + ->where('m.id = 1') + ->fetchOne(); + +This produces a data structure like this. + + Array + ( + [id] => 1 + [foo] => 6 + [servant_id] => + [Ticket_DC24_Servant] => Array + ( + [id] => + [bar] => + [joe] => 6 + ) + + [joe] => 6 + ) + +Now we have a blank `Ticket_DC24_Servant` instance and if we were to try and call +`save()` like below we would get an error. + + [php] + $master->some_field = 'test'; + $master->save(); + +Now as of 1.2 the structure will only look like this. + + Array + ( + [id] => 1 + [foo] => 6 + [servant_id] => 1 + [joe] => 6 + ) + +## PEAR Style Model Loading and Generation + +Doctrine 1.2 now has the ability to generate PEAR style naming conventions for your +models and can autoload them. + +First we have a new method for setting the path to our models for the autoloader. + + [php] + Doctrine_Core::setModelsDirectory('/path/to/my/models'); + +Make sure you have registered the `modelsAutoload()` method: + + [php] + spl_autoload_register(array('Doctrine', 'modelsAutoload')); + +Now when you ask for a class named `My_Test_Model` it will try and autoload it +from `/path/to/my/models/My/Test/Model.php`. + +So now you can autoload PEAR style models, but what about generating them? For this +we had to add a new option to the model builder called `pearStyle`. When this option +is enabled it will string replace any `_` in the path to the file and replace it with the directory +separator `/` right before creating the directories and writing the file. + +Here I'll show an example how you can use the options to convert this schema and +what it would result in. + + [yml] + Article: + columns: + title: string(255) + content: clob + + Article_Category: + columns: + name: string(255) + +Now if we configure a schema importer like the following. + + [php] + $import = new Doctrine_Import_Schema(); + $import->setOptions(array( + 'pearStyle' => true, + 'baseClassesDirectory' => null, + 'baseClassPrefix' => 'Base_', + 'classPrefix' => 'MyProject_Models_', + 'classPrefixFiles' => true + )); + $import->importSchema('schema.yml', 'yml', 'lib'); + +This will result in some files and directories like the following. + + lib/ + MyProject/ + Models/ + Article/ + Category.php + Article.php + Base/ + Article/ + Category.php + Article.php + +So now you can easily use our autoloader or your own to load our models with the +PEAR style naming convention. + + [php] + spl_autoload_register(array('Doctrine', 'autoload')); + Doctrine_Core::setModelsDirectory('lib'); + +Now if we use this code. + + [php] + $article = MyProject_Models_Article(); + +It will autoload the file from `lib/MyProject/Models/Article.php` + +## Customizing Column Validators + +Often when you generate models from a database, you want to customize and improve +your models by overriding the `setTableDefinition()` and tweaking things. To make +this easier we added a new method to customize column options but not completely +override it. + + [php] + class User extends BaseUser + { + public function setTableDefinition() + { + parent::setTableDefinition(); + + $this->setColumnOptions('username', array('unique' => true)); + } + } + +## Resetting Manager Instances + +Sometimes when performing unit tests using Doctrine, you will want to reset +the static manager instance held in `Doctrine_Manager`. + +We've added a static method `resetInstance()` and a public method `reset()` +to help you with this. + + [php] + $manager1 = Doctrine_Manager::getInstance(); + Doctrine_Manager::resetInstance(); + $manager2 = Doctrine_Manager::getInstance(); + + // $manager1 !== $manager2 + +You can also simply reset an instance back to the state when it was first created. + + [php] + $manager->reset(); + +## Registering Custom CLI Tasks + +Thanks to Dan Bettles, he contributed some refactorings to the Doctrine 1 CLI +to allow us to register custom tasks with the `registerTask()` method. + + [php] + $cli = new Doctrine_Cli($config); + $cli->registerTask('/path/to/MyCustomTask', 'my-task'); + $cli->run($_SERVER['argv']); + +Now you can execute: + + $ php doctrine my-task + +Be sure to define the class like this. + + [php] + class MyCustomTask extends Doctrine_Task + { + public $description = 'My custom task', + $requiredArguments = array('arg1' => 'Required first argument.'), + $optionalArguments = array('arg2' => 'Optional second argument.'); + + public function execute() + { + $arg1 = $this->getArgument('arg1'); + $arg2 = $this->getArgument('arg2'); + } + } + +## Doctrine Nested Set Hierarchy Structure + +When working with the `NestedSet` behavior in Doctrine 1.2 it has some very nice +features that make working with hierarchical data very easy. One of the things +it has always missed is a way to hydrate that data in to a hierarchical structure. +With 1.2 this is now possible with some new hydration types. + + [php] + $categories = Doctrine_Core::getTable('Category') + ->createQuery('c') + ->execute(array(), Doctrine_Core::HYDRATE_RECORD_HIERARCHY); + +Now you can access the children of a record by accessing the mapped value property +named `__children`. It is named with the underscores prefixed to avoid any conflicts. + + [php] + foreach ($categories->getFirst()->get('__children') as $child) { + // ... + } + +You can also execute this structure using array hydration and get back the same +structure except as an array. + + [php] + $results = Doctrine_Core::getTable('NestedSetTest_SingleRootNode') + ->createQuery('n') + ->execute(array(), Doctrine_Core::HYDRATE_ARRAY_HIERARCHY); + +If you have an existing `Doctrine_Colletion` instance you can convert that to a +hierarchy as well. + + [php] + $hierarchy = $coll->toHierarchy(); + +The hierarchy a collection can be converted to an array as well. + + [php] + print_r($hierarchy->toArray()); + +## Moved Doctrine to Doctrine_Core + +For integration purposes we have deprecated the `Doctrine` class and moved it to +`Doctrine_Core`. The old class still exists and extends `Doctrine_Core` for BC. + +## Specify Relationship Foreign Key Name + +Up until now, Doctrine would always try and generate a foreign key name for you +for your relationships. Sometimes you may want to customize this name or Doctrine +generates a name that is too long for you. You can customize the foreign key name +now with the `foreignKeyName` option. + + [php] + public function setUp() + { + $this->hasOne('User', array( + 'local' => 'user_id', + 'foreign' => 'id', + 'foreignKeyName' => 'user_id_fk' + )); + } + +Or in YAML you can do the following. + + [yml] + Profile: + columns: + # ... + user_id: integer + relations: + User: + foreignKeyName: user_id_fk + +## Sluggable Provider Option + +You can now use a provider option to the `Sluggable` behavior so you can customize +the PHP code that is used to generate a slug for a record. + + [yml] + Article: + # ... + actAs: + Sluggable: + provider: [MyClass, provideSlug] + +Now you must have some PHP code like this. + + [php] + class MyClass + { + public static function provideSlug(Doctrine_Record $record) + { + // return something + } + } + +## Migrations Primary Key Convenience Methods + +To ease the process of creating and dropping primary keys in Doctrine when using +migrations we've implemented two convenience methods named `createPrimaryKey()` +and `dropPrimaryKey()`. + +You can use create primary keys like the following. + + [php] + $columns = array( + 'id' => array( + 'type' => 'integer', + 'autoincrement' => true + ) + ); + $this->createPrimaryKey('my_table', $columns); + +If you want to drop the primary key you can do the following. + + [php] + $this->dropPrimaryKey('my_table', array('id')); + +You can also use the automation helper with these methods. + + [php] + class MyMigration extends Doctrine_Migration_Base + { + public function migrate($direction) + { + $columns = array( + 'id' => array( + 'type' => 'integer', + 'autoincrement' => true + ) + ); + $this->primaryKey('my_table', $columns); + } + } + +The above migration will create the primary key when migrating up and drop it when +migrating down. + +## Fixed changeColumn() Argument Order in Migrations + +Previously the order of `changeColumn()` was not in the order you would expect. + + [php] + public function changeColumn($tableName, $columnName, $length = null, $type = null, array $options = array()) + +Notice how the `$length` is before `$type`. Everywhere else in Doctrine that's +how it is. So for this version we have fixed that. + + [php] + public function changeColumn($tableName, $columnName, $type = null, $length = null, array $options = array()) + +## Ordering Relationships + +It is now possible to set a default order by for your relationships. The order by +is automatically included in the final SQL when writing DQL queries or lazily +fetching relationships. + + [yml] + User: + columns: + username: string(255) + password: string(255) + relations: + Articles: + class: Article + local: id + foreign: user_id + type: many + foreignType: one + orderBy: title ASC + + Article: + columns: + title: string(255) + content: clob + user_id: integer + +Now if we were to do the following PHP we'll get the SQL with an order by. + + [php] + $q = Doctrine::getTable('User') + ->createQuery('u') + ->leftJoin('u.Articles a'); + + echo $q->getSqlQuery() . "\n\n"; + +Now you should see this SQL query. + + [sql] + SELECT u.id AS u__id, u.username AS u__username, u.password AS u__password, a.id AS a__id, a.title AS a__title, a.content AS a__content, a.user_id AS a__user_id FROM user u LEFT JOIN article a ON u.id = a.user_id ORDER BY a.title ASC + +Or if you lazily fetch the `Articles` they will be lazily loaded with the order by. + + [php] + $user = Doctrine::getTable('User')->find(1); + $articles = $user->Articles; + +This would execute the following SQL query. + + [sql] + SELECT a.id AS a__id, a.title AS a__title, a.content AS a__content, a.user_id AS a__user_id FROM article a WHERE (a.user_id IN (?)) ORDER BY a.title ASC + +You can also specify the default order by for a model itself instead of on the relationship. + + [yml] + Article: + options: + orderBy: title ASC + columns: + title: string(255) + +Now any query involving the `Article` model will have that order by. + +## Result Cache Improvements + +In Doctrine when you use result caching, it stores the results of a query in the +cache driver the first time it executes and retrieves it from the cache for all +subsequent requests. The key for this cache entry in the driver is automatically +generated so it is hard for you to identify a single entry and clear it manually. + +In Doctrine 1.2 we added the ability to set the result cache hash/key used. + + [php] + $q = Doctrine_Query::create() + ->from('User u') + ->useResultCache(true, 3600, 'user_list'); + +If you want to manually clear the item from the query object you can do. + + [php] + $q->clearResultCache(); + +Or if you have the cache driver you could delete it by the key. + + [php] + $cacheDriver->delete('user_list'); + +You can also use the `setResultCacheHash()` to set the key used to store the cache +entry. + + [php] + $q = Doctrine_Query::create() + ->from('User u') + ->useResultCache(true, 3600); + + $q->setResultCacheHash('user_list'); + +You can also now delete cache entries from the cache drivers using PHP regular +expressions. + + [php] + $cacheDriver = new Doctrine_Cache_Apc(); + + $cacheDriver->save('my_cache_one'); + $cacheDriver->save('my_cache_two'); + $cacheDriver->save('my_cache_three'); + + echo $cacheDriver->deleteByRegex('/my_cache_.*/'); // 3 + +If you're not a regular expression master and just want to simply delete with +some wild cards then you can use the `*` character with the normal `delete()` +method and we'll build the regular expression for you and call `deleteByRegex()`. + + [php] + echo $cacheDriver->delete('my_cache_*'); + +Since `preg_match()` is pretty slow the above example would not perform well +with lots of cache keys to compare to the regular expression so you can +alternatively use the `deleteByPrefix()` and `deleteBySuffix()` method if +that is sufficient enough for you. + + [php] + echo $cacheDriver->deleteByPrefix('my_cache_'); + +## BLOB and File Handle Resources + +It is now possible to provide the contents for a blob column through a file +handle resource. + + [php] + $file = new File(); + $file->binary_data = file('/path/to/file'); + $file->save(); + +## Symfony sfYaml External + +Doctrine is now using the Symfony Component `sfYaml` for our YAML parsing as an +SVN external. So it will always be up to date and receive bug fixes from Symfony. + +## Better replace() Support + +The `Doctrine_Record::replace()` had a lot of issues previously as it did not +behave the same as if you were to call `save()`, `update()`, or `insert()`. +Now when you call `replace()` all the same events will be triggered and the +saving of the graph will be triggered just as if you were using `save()`. + + [php] + $user = new User(); + $user->username = 'jonwage'; + $user->password = 'changeme2'; + $user->replace(); + +## Added hardDelete() method to SoftDelete + +Something missing from the `SoftDelete` behavior was the ability to force the +deletion of a record in the database. For this we have added a new `hardDelete()` +method. + + [php] + $user = new User(); + $user->username = 'jwage'; + $user->password = 'changeme'; + $user->save(); + $user->delete() // Doesn't actually delete, sets deleted_at flag + + $user->hardDelete(); // Will actually delete the record from the database. + +## Added MySQL SET Support + +Just like the `enum` type for MySQL we also now support the `set` type. It basically +very similar to `enum` but instead of being able to store only one value you can +store multiple of the possible values. + + [yml] + User: + columns: + username: string(255) + password: string(255) + permissions: + type: set + values: [admin, member, moderator, banned] + +Now you can do the following: + + [php] + $user = new User(); + $user->username = 'jwage'; + $user->password = 'changeme'; + $user->permissions = array('admin', 'member'); + +## Models Autoloading + +In Doctrine 1.2 the models autoloading was moved to a custom autoloader for more +flexibility and not forcing the models autoloading on users if they don't want to +use it. If you still wish to use the Doctrine model autoloading then you must +use the following code: + + [php] + spl_autoload_register(array('Doctrine_Core', 'modelsAutoload')); \ No newline at end of file diff --git a/lib/vendor/lexpress/doctrine1/build.properties.dev b/lib/vendor/lexpress/doctrine1/build.properties.dev new file mode 100644 index 0000000..e7f7082 --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/build.properties.dev @@ -0,0 +1,11 @@ +version=1.2.3 +stability=stable +build.dir=build +dist.dir=dist +report.dir=reports +log.archive.dir=logs +test.phpunit_configuration_file= +test.phpunit_generate_coverage=0 +test.pmd_reports=0 +test.pdepend_exec= +test.phpmd_exec= \ No newline at end of file diff --git a/lib/vendor/lexpress/doctrine1/build.xml b/lib/vendor/lexpress/doctrine1/build.xml new file mode 100644 index 0000000..5ff0aea --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/build.xml @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Doctrine + PHP5 Database ORM + pear.doctrine-project.org + +Doctrine is an ORM (object relational mapper) for PHP 5.2.x+ that sits on top of +a powerful DBAL (database abstraction layer). One of its key features is the +ability to optionally write database queries in an OO (object oriented) +SQL-dialect called DQL inspired by Hibernates HQL. This provides developers with +a powerful alternative to SQL that maintains a maximum of flexibility without +requiring needless code duplication. + + + LGPL + + + - + + + + + + + + + \ No newline at end of file diff --git a/lib/vendor/lexpress/doctrine1/composer.json b/lib/vendor/lexpress/doctrine1/composer.json new file mode 100644 index 0000000..9471daa --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/composer.json @@ -0,0 +1,41 @@ +{ + "name": "friendsofsymfony1/doctrine1", + "type": "library", + "description": "PHP Database ORM for Symfony1. Do NOT use for new projects: please move to a newest Symfony release and Doctrine2", + "keywords": ["orm", "database", "symfony1", "doctrine1"], + "homepage": "http://www.doctrine-project.org", + "license": "LGPL-2.1-or-later", + "authors": [ + { + "name": "Konsta Vesterinen", + "email": "kvesteri@cc.hut.fi" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Doctrine1 Contributors", + "homepage": "https://github.com/FriendsOfSymfony1/doctrine1/graphs/contributors" + } + ], + "require": { + "php": ">=5.3", + "ext-mbstring": "*", + "ext-pdo": "*" + }, + "support": { + "issues": "https://github.com/FriendsOfSymfony1/doctrine1/issues", + "source": "https://github.com/FriendsOfSymfony1/doctrine1" + }, + "autoload": { + "psr-0": { + "Doctrine_": "lib/" + } + }, + "extra": { + "branch-alias": { + "dev-master": "1.4-dev" + } + } +} diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Access.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Access.php similarity index 95% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Access.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Access.php index 9a0db8d..572ff7f 100644 --- a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Access.php +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Access.php @@ -114,6 +114,12 @@ public function offsetExists($offset) */ public function offsetGet($offset) { + // array notation with no index was causing 'undefined variable: $offset' notices in php7, + // for example: + // $record->Relations[]->name = 'test'; + if (!isset($offset)) { + return $this->get(null); + } return $this->get($offset); } diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Adapter/Exception.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Adapter/Exception.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Adapter/Exception.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Adapter/Exception.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Adapter/Interface.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Adapter/Interface.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Adapter/Interface.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Adapter/Interface.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Adapter/Mock.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Adapter/Mock.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Adapter/Mock.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Adapter/Mock.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Adapter/Oracle.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Adapter/Oracle.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Adapter/Oracle.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Adapter/Oracle.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Adapter/Statement.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Adapter/Statement.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Adapter/Statement.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Adapter/Statement.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Adapter/Statement/Interface.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Adapter/Statement/Interface.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Adapter/Statement/Interface.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Adapter/Statement/Interface.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Adapter/Statement/Mock.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Adapter/Statement/Mock.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Adapter/Statement/Mock.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Adapter/Statement/Mock.php diff --git a/lib/vendor/lexpress/doctrine1/lib/Doctrine/Adapter/Statement/Oracle.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Adapter/Statement/Oracle.php new file mode 100644 index 0000000..0198f78 --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Adapter/Statement/Oracle.php @@ -0,0 +1,600 @@ +. + */ + +/** + * Oracle connection adapter statement class. + * + * @package Doctrine + * @subpackage Adapter + * @author Konsta Vesterinen + * @author vadik56 + * @author Miloslav Kmet + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @link www.doctrine-project.org + * @since 1.0 + * @version $Rev$ + */ +class Doctrine_Adapter_Statement_Oracle implements Doctrine_Adapter_Statement_Interface +{ + /** + * @var string $queryString actual query string + */ + public $queryString; + + /** + * @var resource $connection OCI connection handler + */ + protected $connection; + + /** + * @var resource $statement OCI prepared statement + */ + protected $statement; + + /** + * @var integer $executeMode OCI statement execution mode + */ + protected $executeMode = OCI_COMMIT_ON_SUCCESS; + + /** + * @var array $bindParams Array of parameters bounded to a statement + */ + protected $bindParams = array(); + + /** + * @var array $attributes Array of attributes + */ + protected $attributes = array(); + + /** + * @var array $ociErrors Array of errors + */ + protected $ociErrors = array(); + + /** + * the constructor + * + * @param Doctrine_Adapter_Oracle $connection + * @param string $query Query string to be executed + * @param integer $executeMode OCI execute mode + */ + public function __construct( Doctrine_Adapter_Oracle $connection, $query, $executeMode) + { + $this->connection = $connection->getConnection(); + $this->queryString = $query; + $this->executeMode = $executeMode; + $this->attributes[Doctrine_Core::ATTR_ERRMODE] = $connection->getAttribute(Doctrine_Core::ATTR_ERRMODE); + + $this->parseQuery(); + } + + /** + * Bind a column to a PHP variable + * + * @param mixed $column Number of the column (1-indexed) or name of the column in the result set. + * If using the column name, be aware that the name should match + * the case of the column, as returned by the driver. + * @param string $param Name of the PHP variable to which the column will be bound. + * @param integer $type Data type of the parameter, specified by the Doctrine_Core::PARAM_* constants. + * @return boolean Returns TRUE on success or FALSE on failure + */ + public function bindColumn($column, $param, $type = null) + { + throw new Doctrine_Adapter_Exception("Unsupported"); + } + + /** + * Binds a value to a corresponding named or question mark + * placeholder in the SQL statement that was use to prepare the statement. + * + * @param mixed $param Parameter identifier. For a prepared statement using named placeholders, + * this will be a parameter name of the form :name. For a prepared statement + * using question mark placeholders, this will be the 1-indexed position of the parameter + * + * @param mixed $value The value to bind to the parameter. + * @param integer $type Explicit data type for the parameter using the Doctrine_Core::PARAM_* constants. + * + * @return boolean Returns TRUE on success or FALSE on failure. + */ + public function bindValue($param, $value, $type = null) + { + /** + * need to store the value internally since binding is done by reference + */ + $this->bindParams[] = $value; + $this->bindParam($param, $this->bindParams[count($this->bindParams) - 1], $type); + } + + /** + * Binds a PHP variable to a corresponding named or question mark placeholder in the + * SQL statement that was use to prepare the statement. Unlike Doctrine_Adapter_Statement_Interface->bindValue(), + * the variable is bound as a reference and will only be evaluated at the time + * that Doctrine_Adapter_Statement_Interface->execute() is called. + * + * Most parameters are input parameters, that is, parameters that are + * used in a read-only fashion to build up the query. Some drivers support the invocation + * of stored procedures that return data as output parameters, and some also as input/output + * parameters that both send in data and are updated to receive it. + * + * @param mixed $param Parameter identifier. For a prepared statement using named placeholders, + * this will be a parameter name of the form :name. For a prepared statement + * using question mark placeholders, this will be the 1-indexed position of the parameter + * + * @param mixed $variable Name of the PHP variable to bind to the SQL statement parameter. + * + * @param integer $type Explicit data type for the parameter using the Doctrine_Core::PARAM_* constants. To return + * an INOUT parameter from a stored procedure, use the bitwise OR operator to set the + * Doctrine_Core::PARAM_INPUT_OUTPUT bits for the data_type parameter. + * + * @param integer $length Length of the data type. To indicate that a parameter is an OUT parameter + * from a stored procedure, you must explicitly set the length. + * @param mixed $driverOptions + * @return boolean Returns TRUE on success or FALSE on failure. + */ + public function bindParam($column, &$variable, $type = null, $length = null, $driverOptions = array()) + { + if ($driverOptions || $length ) { + throw new Doctrine_Adapter_Exception('Unsupported parameters:$length, $driverOptions'); + } + + if ($length === null) { + $oci_length = -1; + } + $oci_type = SQLT_CHR; + + switch ($type) { + case Doctrine_Core::PARAM_STR: + $oci_type = SQLT_CHR; + break; + } + + if (is_integer($column)) { + $variable_name = ":oci_b_var_$column"; + } else { + $variable_name = $column; + } + //print "Binding $variable to $variable_name".PHP_EOL; + $status = @oci_bind_by_name($this->statement, $variable_name, $variable, $oci_length, $oci_type); + if ($status === false) { + $this->handleError(); + } + return $status; + } + + /** + * Closes the cursor, enabling the statement to be executed again. + * + * @return boolean Returns TRUE on success or FALSE on failure. + */ + public function closeCursor() + { + $this->bindParams = array(); + if (is_resource($this->statement)) { + return oci_free_statement($this->statement); + } + return true; + } + + /** + * Returns the number of columns in the result set + * + * @return integer Returns the number of columns in the result set represented + * by the Doctrine_Adapter_Statement_Interface object. If there is no result set, + * this method should return 0. + */ + public function columnCount() + { + return oci_num_fields ( $this->statement ); + } + + /** + * Fetch the SQLSTATE associated with the last operation on the statement handle + * + * @see Doctrine_Adapter_Interface::errorCode() + * @return string error code string + */ + public function errorCode() + { + $oci_error = $this->getOciError(); + return $oci_error['code']; + } + + /** + * Fetch extended error information associated with the last operation on the statement handle + * + * @see Doctrine_Adapter_Interface::errorInfo() + * @return array error info array + */ + public function errorInfo() + { + $oci_error = $this->getOciError(); + return $oci_error['message'] . " : " . $oci_error['sqltext']; + } + + private function getOciError() + { + if (is_resource($this->statement)) { + $oci_error = oci_error ($this->statement); + } else { + $oci_error = oci_error (); + } + + if ($oci_error) { + //store the error + $this->oci_errors[] = $oci_error; + } else if (count($this->ociErrors) > 0) { + $oci_error = $this->ociErrors[count($this->ociErrors)-1]; + } + return $oci_error; + } + + /** + * Executes a prepared statement + * + * If the prepared statement included parameter markers, you must either: + * call PDOStatement->bindParam() to bind PHP variables to the parameter markers: + * bound variables pass their value as input and receive the output value, + * if any, of their associated parameter markers or pass an array of input-only + * parameter values + * + * + * @param array $params An array of values with as many elements as there are + * bound parameters in the SQL statement being executed. + * @return boolean Returns TRUE on success or FALSE on failure. + */ + public function execute($params = null) + { + if (is_array($params)) { + foreach ($params as $var => $value) { + $this->bindValue($var+1, $value); + } + } + + $result = @oci_execute($this->statement , $this->executeMode ); + + if ($result === false) { + $this->handleError(); + return false; + } + return true; + } + + /** + * fetch + * + * @see Doctrine_Core::FETCH_* constants + * @param integer $fetchStyle Controls how the next row will be returned to the caller. + * This value must be one of the Doctrine_Core::FETCH_* constants, + * defaulting to Doctrine_Core::FETCH_BOTH + * + * @param integer $cursorOrientation For a PDOStatement object representing a scrollable cursor, + * this value determines which row will be returned to the caller. + * This value must be one of the Doctrine_Core::FETCH_ORI_* constants, defaulting to + * Doctrine_Core::FETCH_ORI_NEXT. To request a scrollable cursor for your + * Doctrine_Adapter_Statement_Interface object, + * you must set the Doctrine_Core::ATTR_CURSOR attribute to Doctrine_Core::CURSOR_SCROLL when you + * prepare the SQL statement with Doctrine_Adapter_Interface->prepare(). + * + * @param integer $cursorOffset For a Doctrine_Adapter_Statement_Interface object representing a scrollable cursor for which the + * $cursorOrientation parameter is set to Doctrine_Core::FETCH_ORI_ABS, this value specifies + * the absolute number of the row in the result set that shall be fetched. + * + * For a Doctrine_Adapter_Statement_Interface object representing a scrollable cursor for + * which the $cursorOrientation parameter is set to Doctrine_Core::FETCH_ORI_REL, this value + * specifies the row to fetch relative to the cursor position before + * Doctrine_Adapter_Statement_Interface->fetch() was called. + * + * @return mixed + */ + public function fetch($fetchStyle = Doctrine_Core::FETCH_BOTH, $cursorOrientation = Doctrine_Core::FETCH_ORI_NEXT, $cursorOffset = null) + { + switch ($fetchStyle) { + case Doctrine_Core::FETCH_BOTH : + return oci_fetch_array($this->statement, OCI_BOTH + OCI_RETURN_NULLS + OCI_RETURN_LOBS); + break; + case Doctrine_Core::FETCH_ASSOC : + return oci_fetch_array($this->statement, OCI_ASSOC + OCI_RETURN_NULLS + OCI_RETURN_LOBS); + break; + case Doctrine_Core::FETCH_NUM : + return oci_fetch_array($this->statement, OCI_NUM + OCI_RETURN_NULLS + OCI_RETURN_LOBS); + break; + case Doctrine_Core::FETCH_OBJ: + return oci_fetch_object($this->statement, OCI_NUM + OCI_RETURN_NULLS + OCI_RETURN_LOBS); + break; + default: + throw new Doctrine_Adapter_Exception("This type of fetch is not supported: ".$fetchStyle); +/* + case Doctrine_Core::FETCH_BOUND: + case Doctrine_Core::FETCH_CLASS: + case FETCH_CLASSTYPE: + case FETCH_COLUMN: + case FETCH_FUNC: + case FETCH_GROUP: + case FETCH_INTO: + case FETCH_LAZY: + case FETCH_NAMED: + case FETCH_SERIALIZE: + case FETCH_UNIQUE: + case FETCH_ORI_ABS: + case FETCH_ORI_FIRST: + case FETCH_ORI_LAST: + case FETCH_ORI_NEXT: + case FETCH_ORI_PRIOR: + case FETCH_ORI_REL: +*/ + } + } + + /** + * Returns an array containing all of the result set rows + * + * @param integer $fetchStyle Controls how the next row will be returned to the caller. + * This value must be one of the Doctrine_Core::FETCH_* constants, + * defaulting to Doctrine_Core::FETCH_BOTH + * + * @param integer $columnIndex Returns the indicated 0-indexed column when the value of $fetchStyle is + * Doctrine_Core::FETCH_COLUMN. Defaults to 0. + * + * @return array + */ + public function fetchAll($fetchStyle = Doctrine_Core::FETCH_BOTH, $colnum=0) + { + $fetchColumn = false; + $skip = 0; + $maxrows = -1; + $data = array(); + $flags = OCI_FETCHSTATEMENT_BY_ROW + OCI_ASSOC; + + $int = $fetchStyle & Doctrine_Core::FETCH_COLUMN; + + if ($fetchStyle == Doctrine_Core::FETCH_BOTH) { + $flags = OCI_BOTH; + $numberOfRows = @oci_fetch_all($this->statement, $data, $skip, $maxrows, OCI_FETCHSTATEMENT_BY_ROW + OCI_ASSOC + OCI_RETURN_LOBS); + } else if ($fetchStyle == Doctrine_Core::FETCH_ASSOC) { + $numberOfRows = @oci_fetch_all($this->statement, $data, $skip, $maxrows, OCI_FETCHSTATEMENT_BY_ROW + OCI_ASSOC + OCI_RETURN_LOBS); + } else if ($fetchStyle == Doctrine_Core::FETCH_NUM) { + $numberOfRows = @oci_fetch_all($this->statement, $data, $skip, $maxrows, OCI_FETCHSTATEMENT_BY_ROW + OCI_NUM + OCI_RETURN_LOBS); + } else if ($fetchStyle == Doctrine_Core::FETCH_COLUMN) { + while ($row = @oci_fetch_array ($this->statement, OCI_NUM+OCI_RETURN_LOBS)) { + $data[] = $row[$colnum]; + } + } else { + throw new Doctrine_Adapter_Exception("Unsupported mode: '" . $fetchStyle . "' "); + } + + return $data; + } + + /** + * Returns a single column from the next row of a + * result set or FALSE if there are no more rows. + * + * @param integer $columnIndex 0-indexed number of the column you wish to retrieve from the row. If no + * value is supplied, Doctrine_Adapter_Statement_Interface->fetchColumn() + * fetches the first column. + * + * @return string returns a single column in the next row of a result set. + */ + public function fetchColumn($columnIndex = 0) + { + if ( ! is_integer($columnIndex)) { + $this->handleError(array('message'=>"columnIndex parameter should be numeric")); + + return false; + } + $row = $this->fetch(Doctrine_Core::FETCH_NUM); + return isset($row[$columnIndex]) ? $row[$columnIndex] : false; + } + + /** + * Fetches the next row and returns it as an object. + * + * Fetches the next row and returns it as an object. This function is an alternative to + * Doctrine_Adapter_Statement_Interface->fetch() with Doctrine_Core::FETCH_CLASS or Doctrine_Core::FETCH_OBJ style. + * + * @param string $className Name of the created class, defaults to stdClass. + * @param array $args Elements of this array are passed to the constructor. + * + * @return mixed an instance of the required class with property names that correspond + * to the column names or FALSE in case of an error. + */ + public function fetchObject($className = 'stdClass', $args = array()) + { + $row = $this->fetch(Doctrine_Core::FETCH_ASSOC); + if ($row === false) { + return false; + } + + $instantiation_code = "\$object = new $className("; + $firstParam=true; + foreach ($args as $index=>$value) { + if ( ! $firstParam ) { + $instantiation_code = $instantiation_code . ","; + } else { + $firstParam= false; + } + if ( is_string($index)) { + $instantiation_code = $instantiation_code . " \$args['$index']"; + } else { + $instantiation_code = $instantiation_code . "\$args[$index]"; + } + } + + $instantiation_code = $instantiation_code . ");"; + + eval($instantiation_code); + + //initialize instance of $className class + foreach ($row as $col => $value) { + $object->$col = $value; + } + + return $object; + } + + /** + * Returns metadata for a column in a result set + * + * @param integer $column The 0-indexed column in the result set. + * + * @return array Associative meta data array with the following structure: + * + * native_type The PHP native type used to represent the column value. + * driver:decl_ type The SQL type used to represent the column value in the database. If the column in the result set is the result of a function, this value is not returned by PDOStatement->getColumnMeta(). + * flags Any flags set for this column. + * name The name of this column as returned by the database. + * len The length of this column. Normally -1 for types other than floating point decimals. + * precision The numeric precision of this column. Normally 0 for types other than floating point decimals. + * pdo_type The type of this column as represented by the PDO::PARAM_* constants. + */ + public function getColumnMeta($column) + { + if (is_integer($column)) { + $internal_column = $column +1; + } else { + $internal_column = $column; + } + + $data = array(); + $data['native_type'] = oci_field_type($this->statement, $internal_column); + $data['flags'] = ""; + $data['len'] = oci_field_size($this->statement, $internal_column); + $data['name'] = oci_field_name($this->statement, $internal_column); + $data['precision'] = oci_field_precision($this->statement, $internal_column); + + return $data; + } + + /** + * Advances to the next rowset in a multi-rowset statement handle + * + * Some database servers support stored procedures that return more than one rowset + * (also known as a result set). The nextRowset() method enables you to access the second + * and subsequent rowsets associated with a PDOStatement object. Each rowset can have a + * different set of columns from the preceding rowset. + * + * @return boolean Returns TRUE on success or FALSE on failure. + */ + public function nextRowset() + { + throw new Doctrine_Adapter_Exception("Unsupported"); + } + + /** + * rowCount() returns the number of rows affected by the last DELETE, INSERT, or UPDATE statement + * executed by the corresponding object. + * + * If the last SQL statement executed by the associated Statement object was a SELECT statement, + * some databases may return the number of rows returned by that statement. However, + * this behaviour is not guaranteed for all databases and should not be + * relied on for portable applications. + * + * @return integer Returns the number of rows. + */ + public function rowCount() + { + return @oci_num_rows($this->statement); + } + + /** + * Set a statement attribute + * + * @param integer $attribute + * @param mixed $value the value of given attribute + * @return boolean Returns TRUE on success or FALSE on failure. + */ + public function setAttribute($attribute, $value) + { + switch ($attribute) { + case Doctrine_Core::ATTR_ERRMODE; + break; + default: + throw new Doctrine_Adapter_Exception("Unsupported Attribute: $attribute"); + } + $this->attributes[$attribute] = $value; + } + + /** + * Retrieve a statement attribute + * + * @param integer $attribute + * @see Doctrine_Core::ATTR_* constants + * @return mixed the attribute value + */ + public function getAttribute($attribute) + { + return $this->attributes[$attribute]; + } + + /** + * Set the default fetch mode for this statement + * + * @param integer $mode The fetch mode must be one of the Doctrine_Core::FETCH_* constants. + * @return boolean Returns 1 on success or FALSE on failure. + */ + public function setFetchMode($mode, $arg1 = null, $arg2 = null) + { + throw new Doctrine_Adapter_Exception("Unsupported"); + } + + private function handleError($params=array()) + { + + switch ($this->attributes[Doctrine_Core::ATTR_ERRMODE]) { + case Doctrine_Core::ERRMODE_EXCEPTION: + if (isset($params['message'])) { + throw new Doctrine_Adapter_Exception($params['message']); + } else { + throw new Doctrine_Adapter_Exception($this->errorInfo()); + } + + break; + case Doctrine_Core::ERRMODE_WARNING: + case Doctrine_Core::ERRMODE_SILENT: + break; + } + } + + /** + * Parse actual query from queryString and returns OCI statement handler + * @param string Query string to parse, if NULL, $this->queryString is used + * + * @return resource OCI statement handler + */ + private function parseQuery($query=null) + { + if (is_null($query)) { + $query = $this->queryString; + } + $bind_index = 1; + // Replace ? bind-placeholders with :oci_b_var_ variables + $query = preg_replace_callback("/(\?)/", function($m) use(&$bind_index) { return ":oci_b_var_". $bind_index++; } , $query); + + $this->statement = @oci_parse($this->connection, $query); + + if ( $this->statement == false ) + { + throw new Doctrine_Adapter_Exception($this->getOciError()); + } + + return $this->statement; + } +} diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/AuditLog.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/AuditLog.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/AuditLog.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/AuditLog.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/AuditLog/Listener.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/AuditLog/Listener.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/AuditLog/Listener.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/AuditLog/Listener.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/AuditLog/Listener/Microtime.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/AuditLog/Listener/Microtime.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/AuditLog/Listener/Microtime.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/AuditLog/Listener/Microtime.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Builder.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Builder.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Builder.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Builder.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cache/Apc.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Cache/Apc.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cache/Apc.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Cache/Apc.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cache/Array.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Cache/Array.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cache/Array.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Cache/Array.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cache/Db.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Cache/Db.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cache/Db.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Cache/Db.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cache/Driver.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Cache/Driver.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cache/Driver.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Cache/Driver.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cache/Exception.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Cache/Exception.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cache/Exception.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Cache/Exception.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cache/Interface.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Cache/Interface.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cache/Interface.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Cache/Interface.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cache/Memcache.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Cache/Memcache.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cache/Memcache.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Cache/Memcache.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cache/Xcache.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Cache/Xcache.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cache/Xcache.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Cache/Xcache.php diff --git a/lib/vendor/lexpress/doctrine1/lib/Doctrine/Cli.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Cli.php new file mode 100644 index 0000000..f6cd3dd --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Cli.php @@ -0,0 +1,679 @@ +. + */ + +/** + * Command line interface class + * + * Interface for easily executing Doctrine_Task classes from a command line interface + * + * @package Doctrine + * @subpackage Cli + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @link www.doctrine-project.org + * @since 1.0 + * @version $Revision: 2761 $ + * @author Jonathan H. Wage + */ +class Doctrine_Cli +{ + /** + * The name of the Doctrine Task base class + * + * @var string + */ + const TASK_BASE_CLASS = 'Doctrine_Task'; + + /** + * @var string + */ + protected $_scriptName = null; + + /** + * @var array + */ + private $_config; + + /** + * @var object Doctrine_Cli_Formatter + */ + private $_formatter; + + /** + * An array, keyed on class name, containing task instances + * + * @var array + */ + private $_registeredTask = array(); + + /** + * @var object Doctrine_Task + */ + private $_taskInstance; + + /** + * __construct + * + * @param array [$config=array()] + * @param object|null [$formatter=null] Doctrine_Cli_Formatter + */ + public function __construct(array $config = array(), Doctrine_Cli_Formatter $formatter = null) + { + $this->setConfig($config); + $this->setFormatter($formatter ? $formatter : new Doctrine_Cli_AnsiColorFormatter()); + $this->includeAndRegisterTaskClasses(); + } + + /** + * @param array $config + */ + public function setConfig(array $config) + { + $this->_config = $config; + } + + /** + * @return array + */ + public function getConfig() + { + return $this->_config; + } + + /** + * @param object $formatter Doctrine_Cli_Formatter + */ + public function setFormatter(Doctrine_Cli_Formatter $formatter) + { + $this->_formatter = $formatter; + } + + /** + * @return object Doctrine_Cli_Formatter + */ + public function getFormatter() + { + return $this->_formatter; + } + + /** + * Returns the specified value from the config, or the default value, if specified + * + * @param string $name + * @return mixed + * @throws OutOfBoundsException If the element does not exist in the config + */ + public function getConfigValue($name/*, $defaultValue*/) + { + if (! isset($this->_config[$name])) { + if (func_num_args() > 1) { + return func_get_arg(1); + } + + throw new OutOfBoundsException("The element \"{$name}\" does not exist in the config"); + } + + return $this->_config[$name]; + } + + /** + * Returns TRUE if the element in the config has the specified value, or FALSE otherwise + * + * If $value is not passed, this method will return TRUE if the specified element has _any_ value, or FALSE if the + * element is not set + * + * For strict checking, set $strict to TRUE - the default is FALSE + * + * @param string $name + * @param mixed [$value=null] + * @param bool [$strict=false] + * @return bool + */ + public function hasConfigValue($name, $value = null, $strict = false) + { + if (isset($this->_config[$name])) { + if (func_num_args() < 2) { + return true; + } + + if ($strict) { + return $this->_config[$name] === $value; + } + + return $this->_config[$name] == $value; + } + + return false; + } + + /** + * Sets the array of registered tasks + * + * @param array $registeredTask + */ + public function setRegisteredTasks(array $registeredTask) + { + $this->_registeredTask = $registeredTask; + } + + /** + * Returns an array containing the registered tasks + * + * @return array + */ + public function getRegisteredTasks() + { + return $this->_registeredTask; + } + + /** + * Returns TRUE if the specified Task-class is registered, or FALSE otherwise + * + * @param string $className + * @return bool + */ + public function taskClassIsRegistered($className) + { + return isset($this->_registeredTask[$className]); + } + + /** + * Returns TRUE if a task with the specified name is registered, or FALSE otherwise + * + * If a matching task is found, $className is set with the name of the implementing class + * + * @param string $taskName + * @param string|null [&$className=null] + * @return bool + */ + public function taskNameIsRegistered($taskName, &$className = null) + { + foreach ($this->getRegisteredTasks() as $currClassName => $task) { + if ($task->getTaskName() == $taskName) { + $className = $currClassName; + return true; + } + } + + return false; + } + + /** + * @param object $task Doctrine_Task + */ + public function setTaskInstance(Doctrine_Task $task) + { + $this->_taskInstance = $task; + } + + /** + * @return object Doctrine_Task + */ + public function getTaskInstance() + { + return $this->_taskInstance; + } + + /** + * Called by the constructor, this method includes and registers Doctrine core Tasks and then registers all other + * loaded Task classes + * + * The second round of registering will pick-up loaded custom Tasks. Methods are provided that will allow users to + * register Tasks loaded after creating an instance of Doctrine_Cli. + */ + protected function includeAndRegisterTaskClasses() + { + $this->includeAndRegisterDoctrineTaskClasses(); + + //Always autoregister custom tasks _unless_ we've been explicitly asked not to + if ($this->getConfigValue('autoregister_custom_tasks', true)) { + $this->registerIncludedTaskClasses(); + } + } + + /** + * Includes and registers Doctrine-style tasks from the specified directory / directories + * + * If no directory is given it looks in the default Doctrine/Task folder for the core tasks + * + * @param mixed [$directories=null] Can be a string path or array of paths + */ + protected function includeAndRegisterDoctrineTaskClasses($directories = null) + { + if (is_null($directories)) { + $directories = Doctrine_Core::getPath() . DIRECTORY_SEPARATOR . 'Doctrine' . DIRECTORY_SEPARATOR . 'Task'; + } + + foreach ((array) $directories as $directory) { + foreach ($this->includeDoctrineTaskClasses($directory) as $className) { + $this->registerTaskClass($className); + } + } + } + + /** + * Attempts to include Doctrine-style Task-classes from the specified directory - and nothing more besides + * + * Returns an array containing the names of Task classes included + * + * This method effectively makes two assumptions: + * - The directory contains only _Task_ class-files + * - The class files, and the class in each, follow the Doctrine naming conventions + * + * This means that a file called "Foo.php", say, will be expected to contain a Task class called + * "Doctrine_Task_Foo". Hence the method's name, "include*Doctrine*TaskClasses". + * + * @param string $directory + * @return array $taskClassesIncluded + * @throws InvalidArgumentException If the directory does not exist + */ + protected function includeDoctrineTaskClasses($directory) + { + if (! is_dir($directory)) { + throw new InvalidArgumentException("The directory \"{$directory}\" does not exist"); + } + + $taskClassesIncluded = array(); + + $iterator = new RecursiveIteratorIterator( + new RecursiveDirectoryIterator($directory), + RecursiveIteratorIterator::LEAVES_ONLY + ); + + foreach ($iterator as $file) { + $baseName = $file->getFileName(); + + /* + * Class-files must start with an uppercase letter. This additional check will help prevent us + * accidentally running 'executable' scripts that may be mixed-in with the class files. + */ + $matched = (bool) preg_match('/^([A-Z].*?)\.php$/', $baseName, $matches); + + if ( ! ($matched && (strpos($baseName, '.inc') === false))) { + continue; + } + + $expectedClassName = self::TASK_BASE_CLASS . '_' . $matches[1]; + + if ( ! class_exists($expectedClassName)) { + require_once($file->getPathName()); + } + + //So was the expected class included, and is it a task? If so, we'll let the calling function know. + if (class_exists($expectedClassName, false) && $this->classIsTask($expectedClassName)) { + $taskClassesIncluded[] = $expectedClassName; + } + } + + return $taskClassesIncluded; + } + + /** + * Registers the specified _included_ task-class + * + * @param string $className + * @throws InvalidArgumentException If the class does not exist or the task-name is blank + * @throws DomainException If the class is not a Doctrine Task + */ + public function registerTaskClass($className) + { + //Simply ignore registered classes + if ($this->taskClassIsRegistered($className)) { + return; + } + + if ( ! class_exists($className/*, false*/)) { + throw new InvalidArgumentException("The task class \"{$className}\" does not exist"); + } + + if ( ! $this->classIsTask($className)) { + throw new DomainException("The class \"{$className}\" is not a Doctrine Task"); + } + + $this->_registeredTask[$className] = $this->createTaskInstance($className, $this); + } + + /** + * Returns TRUE if the specified class is a Task, or FALSE otherwise + * + * @param string $className + * @return bool + */ + protected function classIsTask($className) + { + $reflectionClass = new ReflectionClass($className); + return (bool) $reflectionClass->isSubclassOf(self::TASK_BASE_CLASS); + } + + /** + * Creates, and returns, a new instance of the specified Task class + * + * Displays a message, and returns FALSE, if there were problems instantiating the class + * + * @param string $className + * @param object $cli Doctrine_Cli + * @return object Doctrine_Task + */ + protected function createTaskInstance($className, Doctrine_Cli $cli) + { + return new $className($cli); + } + + /** + * Registers all loaded classes - by default - or the specified loaded Task classes + * + * This method will skip registered task classes, so it can be safely called many times over + */ + public function registerIncludedTaskClasses() + { + foreach (get_declared_classes() as $className) { + if ($this->classIsTask($className)) { + $this->registerTaskClass($className); + } + } + } + + /** + * Notify the formatter of a message + * + * @param string $notification The notification message + * @param string $style Style to format the notification with(INFO, ERROR) + * @return void + */ + public function notify($notification = null, $style = 'HEADER') + { + $formatter = $this->getFormatter(); + + echo( + $formatter->format($this->getTaskInstance()->getTaskName(), 'INFO') . ' - ' . + $formatter->format($notification, $style) . "\n" + ); + } + + /** + * Formats, and then returns, the message in the specified exception + * + * @param Exception $exception + * @return string + */ + protected function formatExceptionMessage(Exception $exception) + { + $message = $exception->getMessage(); + + if (Doctrine_Core::debug()) { + $message .= "\n" . $exception->getTraceAsString(); + } + + return $this->getFormatter()->format($message, 'ERROR') . "\n"; + } + + /** + * Notify the formatter of an exception + * + * N.B. This should really only be called by Doctrine_Cli::run(). Exceptions should be thrown when errors occur: + * it's up to Doctrine_Cli::run() to determine how those exceptions are reported. + * + * @param Exception $exception + * @return void + */ + protected function notifyException(Exception $exception) + { + echo $this->formatExceptionMessage($exception); + } + + /** + * Public function to run the loaded task with the passed arguments + * + * @param array $args + * @return void + * @throws Doctrine_Cli_Exception + * @todo Should know more about what we're attempting to run so feedback can be improved. Continue refactoring. + */ + public function run(array $args) + { + try { + $this->_run($args); + } catch (Exception $exception) { + //Do not rethrow exceptions by default + if ($this->getConfigValue('rethrow_exceptions', false)) { + throw new $exception($this->formatExceptionMessage($exception)); + } + + $this->notifyException($exception); + + //User error + if ($exception instanceof Doctrine_Cli_Exception) { + $this->printTasks(); + } + } + } + + /** + * Run the actual task execution with the passed arguments + * + * @param array $args Array of arguments for this task being executed + * @return void + * @throws Doctrine_Cli_Exception If the requested task has not been registered or if required arguments are missing + * @todo Continue refactoring for testing + */ + protected function _run(array $args) + { + $this->_scriptName = $args[0]; + + $requestedTaskName = isset($args[1]) ? $args[1] : null; + + if ( ! $requestedTaskName || $requestedTaskName == 'help') { + $this->printTasks(null, $requestedTaskName == 'help' ? true : false); + return; + } + + if ($requestedTaskName && isset($args[2]) && $args[2] === 'help') { + $this->printTasks($requestedTaskName, true); + return; + } + + if (! $this->taskNameIsRegistered($requestedTaskName, $taskClassName)) { + throw new Doctrine_Cli_Exception("The task \"{$requestedTaskName}\" has not been registered"); + } + + $taskInstance = $this->createTaskInstance($taskClassName, $this); + $this->setTaskInstance($taskInstance); + $this->executeTask($taskInstance, $this->prepareArgs(array_slice($args, 2))); + } + + /** + * Executes the task with the specified _prepared_ arguments + * + * @param object $task Doctrine_Task + * @param array $preparedArguments + * @throws Doctrine_Cli_Exception If required arguments are missing + */ + protected function executeTask(Doctrine_Task $task, array $preparedArguments) + { + $task->setArguments($preparedArguments); + + if (! $task->validate()) { + throw new Doctrine_Cli_Exception('Required arguments missing'); + } + + $task->execute(); + } + + /** + * Prepare the raw arguments for execution. Combines with the required and optional argument + * list in order to determine a complete array of arguments for the task + * + * @param array $args Array of raw arguments + * @return array $prepared Array of prepared arguments + * @todo Continue refactoring for testing + */ + protected function prepareArgs(array $args) + { + $taskInstance = $this->getTaskInstance(); + + $args = array_values($args); + + // First lets load populate an array with all the possible arguments. required and optional + $prepared = array(); + + $requiredArguments = $taskInstance->getRequiredArguments(); + foreach ($requiredArguments as $key => $arg) { + $prepared[$arg] = null; + } + + $optionalArguments = $taskInstance->getOptionalArguments(); + foreach ($optionalArguments as $key => $arg) { + $prepared[$arg] = null; + } + + // If we have a config array then lets try and fill some of the arguments with the config values + foreach ($this->getConfig() as $key => $value) { + if (array_key_exists($key, $prepared)) { + $prepared[$key] = $value; + } + } + + // Now lets fill in the entered arguments to the prepared array + $copy = $args; + foreach ($prepared as $key => $value) { + if ( ! $value && !empty($copy)) { + $prepared[$key] = $copy[0]; + unset($copy[0]); + $copy = array_values($copy); + } + } + + return $prepared; + } + + /** + * Prints an index of all the available tasks in the CLI instance + * + * @param string|null [$taskName=null] + * @param bool [$full=false] + * @todo Continue refactoring for testing + */ + public function printTasks($taskName = null, $full = false) + { + $formatter = $this->getFormatter(); + $config = $this->getConfig(); + + $taskIndex = $formatter->format('Doctrine Command Line Interface', 'HEADER') . "\n\n"; + + foreach ($this->getRegisteredTasks() as $task) { + if ($taskName && (strtolower($taskName) != strtolower($task->getTaskName()))) { + continue; + } + + $taskIndex .= $formatter->format($this->_scriptName . ' ' . $task->getTaskName(), 'INFO'); + + if ($full) { + $taskIndex .= ' - ' . $task->getDescription() . "\n"; + + $args = ''; + $args .= $this->assembleArgumentList($task->getRequiredArgumentsDescriptions(), $config, $formatter); + $args .= $this->assembleArgumentList($task->getOptionalArgumentsDescriptions(), $config, $formatter); + + if ($args) { + $taskIndex .= "\n" . $formatter->format('Arguments:', 'HEADER') . "\n" . $args; + } + } + + $taskIndex .= "\n"; + } + + echo $taskIndex; + } + + /** + * @param array $argumentsDescriptions + * @param array $config + * @param object $formatter Doctrine_Cli_Formatter + * @return string + */ + protected function assembleArgumentList(array $argumentsDescriptions, array $config, Doctrine_Cli_Formatter $formatter) + { + $argumentList = ''; + + foreach ($argumentsDescriptions as $name => $description) { + $argumentList .= $formatter->format($name, 'ERROR') . ' - '; + + if (isset($config[$name])) { + $argumentList .= $formatter->format($config[$name], 'COMMENT'); + } else { + $argumentList .= $description; + } + + $argumentList .= "\n"; + } + + return $argumentList; + } + + /** + * Used by Doctrine_Cli::loadTasks() and Doctrine_Cli::getLoadedTasks() to re-create their pre-refactoring behaviour + * + * @ignore + * @param array $registeredTask + * @return array + */ + private function createOldStyleTaskList(array $registeredTask) + { + $taskNames = array(); + + foreach ($registeredTask as $className => $task) { + $taskName = $task->getTaskName(); + $taskNames[$taskName] = $taskName; + } + + return $taskNames; + } + + /** + * Old method retained for backwards compatibility + * + * @deprecated + */ + public function loadTasks($directory = null) + { + $this->includeAndRegisterDoctrineTaskClasses($directory); + return $this->createOldStyleTaskList($this->getRegisteredTasks()); + } + + /** + * Old method retained for backwards compatibility + * + * @deprecated + */ + protected function _getTaskClassFromArgs(array $args) + { + return self::TASK_BASE_CLASS . '_' . Doctrine_Inflector::classify(str_replace('-', '_', $args[1])); + } + + /** + * Old method retained for backwards compatibility + * + * @deprecated + */ + public function getLoadedTasks() + { + return $this->createOldStyleTaskList($this->getRegisteredTasks()); + } +} \ No newline at end of file diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cli/AnsiColorFormatter.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Cli/AnsiColorFormatter.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cli/AnsiColorFormatter.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Cli/AnsiColorFormatter.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cli/Exception.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Cli/Exception.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cli/Exception.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Cli/Exception.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cli/Formatter.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Cli/Formatter.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Cli/Formatter.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Cli/Formatter.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Collection.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Collection.php similarity index 91% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Collection.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Collection.php index b0bba35..38b5d85 100644 --- a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Collection.php +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Collection.php @@ -1,6 +1,6 @@ */ class Doctrine_Collection extends Doctrine_Access implements Countable, IteratorAggregate, Serializable @@ -137,7 +137,7 @@ public function getTable() * @param array $data * @return Doctrine_Collection */ - public function setData(array $data) + public function setData(array $data) { $this->data = $data; } @@ -152,7 +152,7 @@ public function serialize() $vars = get_object_vars($this); unset($vars['reference']); - unset($vars['reference_field']); + unset($vars['referenceField']); unset($vars['relation']); unset($vars['expandable']); unset($vars['expanded']); @@ -200,7 +200,7 @@ public function unserialize($serialized) public function setKeyColumn($column) { $this->keyColumn = $column; - + return $this; } @@ -264,6 +264,18 @@ public function key() return key($this->data); } + /** + * Sort by key + * + * @return Doctrine_Collection + */ + public function ksort() + { + ksort($this->data); + + return $this; + } + /** * Sets a reference pointer * @@ -274,7 +286,7 @@ public function setReference(Doctrine_Record $record, Doctrine_Relation $relatio $this->reference = $record; $this->relation = $relation; - if ($relation instanceof Doctrine_Relation_ForeignKey || + if ($relation instanceof Doctrine_Relation_ForeignKey || $relation instanceof Doctrine_Relation_LocalKey) { $this->referenceField = $relation->getForeignFieldName(); @@ -330,7 +342,7 @@ public function contains($key) /** * Search a Doctrine_Record instance * - * @param string $Doctrine_Record + * @param string $Doctrine_Record * @return void */ public function search(Doctrine_Record $record) @@ -371,7 +383,7 @@ public function get($key) if ($key === null) { $this->data[] = $record; } else { - $this->data[$key] = $record; + $this->data[$key] = $record; } if (isset($this->keyColumn)) { @@ -459,8 +471,8 @@ public function add($record, $key = null) } $relations = $this->relation['table']->getRelations(); foreach ($relations as $relation) { - if ($this->relation['class'] == $relation['localTable']->getOption('name') && $relation->getLocal() == $this->relation->getForeignFieldName()) { - $record->$relation['alias'] = $this->reference; + if ($this->relation['localTable']->getOption('name') == $relation['class'] && $relation->getLocal() == $this->relation->getForeignFieldName()) { + $record->{$relation['alias']} = $this->reference; break; } } @@ -496,10 +508,10 @@ public function add($record, $key = null) return true; } - + /** * Merges collection into $this and returns merged collection - * + * * @param Doctrine_Collection $coll * @return Doctrine_Collection */ @@ -507,15 +519,15 @@ public function merge(Doctrine_Collection $coll) { $localBase = $this->getTable()->getComponentName(); $otherBase = $coll->getTable()->getComponentName(); - + if ($otherBase != $localBase && !is_subclass_of($otherBase, $localBase) ) { throw new Doctrine_Collection_Exception("Can't merge collections with incompatible record types"); } - + foreach ($coll->getData() as $record) { $this->add($record); } - + return $this; } @@ -655,7 +667,7 @@ public function getNormalIterator() public function takeSnapshot() { $this->_snapshot = $this->data; - + return $this; } @@ -680,7 +692,7 @@ public function getSnapshot() * * @return Doctrine_Collection */ - public function processDiff() + public function processDiff() { foreach (array_udiff($this->_snapshot, $this->data, array($this, "compareRecords")) as $record) { $record->delete(); @@ -698,20 +710,20 @@ public function toArray($deep = true, $prefixKey = false) { $data = array(); foreach ($this as $key => $record) { - + $key = $prefixKey ? get_class($record) . '_' .$key:$key; - + $data[$key] = $record->toArray($deep, $prefixKey); } - + return $data; } /** * Build an array made up of the values from the 2 specified columns * - * @param string $key - * @param string $value + * @param string $key + * @param string $value * @return array $result */ public function toKeyValueArray($key, $value) @@ -728,8 +740,8 @@ public function toHierarchy() $collection = $this; $table = $collection->getTable(); - if ( ! $table->hasTemplate('NestedSet')) { - throw new Doctrine_Exception('Cannot hydrate model that does not have the NestedSet behavior enabled'); + if ( ! $table->isTree() || ! $table->hasColumn('level')) { + throw new Doctrine_Exception('Cannot hydrate model that does not implements Tree behavior with `level` column'); } // Trees mapped @@ -774,7 +786,7 @@ public function toHierarchy() /** * Populate a Doctrine_Collection from an array of data * - * @param string $array + * @param string $array * @return void */ public function fromArray($array, $deep = true) @@ -819,8 +831,8 @@ public function synchronizeFromArray(array $array) /** * Export a Doctrine_Collection to one of the supported Doctrine_Parser formats * - * @param string $type - * @param string $deep + * @param string $type + * @param string $deep * @return void */ public function exportTo($type, $deep = true) @@ -835,8 +847,8 @@ public function exportTo($type, $deep = true) /** * Import data to a Doctrine_Collection from one of the supported Doctrine_Parser formats * - * @param string $type - * @param string $data + * @param string $type + * @param string $data * @return void */ public function importFrom($type, $data) @@ -871,8 +883,8 @@ public function getInsertDiff() /** * Compares two records. To be used on _snapshot diffs using array_udiff * - * @param Doctrine_Record $a - * @param Doctrine_Record $b + * @param Doctrine_Record $a + * @param Doctrine_Record $b * @return integer */ protected function compareRecords($a, $b) @@ -880,12 +892,12 @@ protected function compareRecords($a, $b) if ($a->getOid() == $b->getOid()) { return 0; } - + return ($a->getOid() > $b->getOid()) ? 1 : -1; } /** - * Saves all records of this collection and processes the + * Saves all records of this collection and processes the * difference of the last snapshot and the current data * * @param Doctrine_Connection $conn optional connection parameter @@ -896,7 +908,7 @@ public function save(Doctrine_Connection $conn = null, $processDiff = true) if ($conn == null) { $conn = $this->_table->getConnection(); } - + try { $conn->beginInternalTransaction(); @@ -919,6 +931,41 @@ public function save(Doctrine_Connection $conn = null, $processDiff = true) return $this; } + /** + * Replaces all records of this collection and processes the + * difference of the last snapshot and the current data + * + * @param Doctrine_Connection $conn optional connection parameter + * @return Doctrine_Collection + */ + public function replace(Doctrine_Connection $conn = null, $processDiff = true) + { + if ($conn == null) { + $conn = $this->_table->getConnection(); + } + + try { + $conn->beginInternalTransaction(); + + $conn->transaction->addCollection($this); + + if ($processDiff) { + $this->processDiff(); + } + + foreach ($this->getData() as $key => $record) { + $record->replace($conn); + } + + $conn->commit(); + } catch (Exception $e) { + $conn->rollback(); + throw $e; + } + + return $this; + } + /** * Deletes all records from this collection * @@ -929,7 +976,7 @@ public function delete(Doctrine_Connection $conn = null, $clearColl = true) if ($conn == null) { $conn = $this->_table->getConnection(); } - + try { $conn->beginInternalTransaction(); $conn->transaction->addCollection($this); @@ -943,14 +990,14 @@ public function delete(Doctrine_Connection $conn = null, $clearColl = true) $conn->rollback(); throw $e; } - + if ($clearColl) { $this->clear(); } - + return $this; } - + /** * Clears the collection. * @@ -1004,7 +1051,7 @@ public function __toString() { return Doctrine_Lib::getCollectionAsString($this); } - + /** * Returns the relation object * @@ -1015,21 +1062,21 @@ public function getRelation() return $this->relation; } - /** - * checks if one of the containing records is modified - * returns true if modified, false otherwise - * - * @return boolean - */ - final public function isModified() { - $dirty = (count($this->getInsertDiff()) > 0 || count($this->getDeleteDiff()) > 0); - if ( ! $dirty) { - foreach($this as $record) { + /** + * checks if one of the containing records is modified + * returns true if modified, false otherwise + * + * @return boolean + */ + final public function isModified() { + $dirty = (count($this->getInsertDiff()) > 0 || count($this->getDeleteDiff()) > 0); + if ( ! $dirty) { + foreach($this as $record) { if ($dirty = $record->isModified()) { break; - } - } - } - return $dirty; + } + } + } + return $dirty; } -} \ No newline at end of file +} diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Collection/Exception.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Collection/Exception.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Collection/Exception.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Collection/Exception.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Collection/Iterator.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Collection/Iterator.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Collection/Iterator.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Collection/Iterator.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Collection/Iterator/Expandable.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Collection/Iterator/Expandable.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Collection/Iterator/Expandable.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Collection/Iterator/Expandable.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Collection/Iterator/Normal.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Collection/Iterator/Normal.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Collection/Iterator/Normal.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Collection/Iterator/Normal.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Collection/Iterator/Offset.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Collection/Iterator/Offset.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Collection/Iterator/Offset.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Collection/Iterator/Offset.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Collection/Offset.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Collection/Offset.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Collection/Offset.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Collection/Offset.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Collection/OnDemand.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Collection/OnDemand.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Collection/OnDemand.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Collection/OnDemand.php diff --git a/lib/vendor/lexpress/doctrine1/lib/Doctrine/Column.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Column.php new file mode 100644 index 0000000..18e081c --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Column.php @@ -0,0 +1,163 @@ +. + */ + +/** + * Doctrine_Column + * This class represents a database column + * + * @author Konsta Vesterinen + * @package Doctrine + * @subpackage Column + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @version $Revision: 7663 $ + * @link www.doctrine-project.org + * @since 1.0 + */ +class Doctrine_Column extends Doctrine_Access implements IteratorAggregate, Countable +{ + /** + * @var array $_definition @see getDefinition() + */ + protected $_definition = array( + 'type' => null, + 'length' => 0, + ); + + /** + * @var array $definition @see getDefinition() + */ + public function __construct(array $definition = array()) + { + $this->_definition = $definition; + } + + /** + * Returns the definition of the column. + * + * Keys can be: + * string type, + * integer length, + * array values (only for enum fields, maps integer indexes to mixed values), + * @return array + */ + public function getDefinition() + { + return $this->_definition; + } + + /** + * contains + * + * @return boolean + */ + public function contains($name) + { + return isset($this->_definition[$name]); + } + + /** + * get + * + * @param string $name + * @return mixed + */ + public function get($name) + { + if ( ! isset($this->_definition[$name])) { + return null; + } + + return $this->_definition[$name]; + } + + /** + * set + * + * @param string $name + * @return void + */ + public function set($name, $value) + { + $this->_definition[$name] = $value; + } + + /** + * @param string $field + * @return array + */ + public function getEnumValues() + { + if (isset($this->_definition['values'])) { + return $this->_definition['values']; + } else { + return array(); + } + } + + /** + * Retrieves an enum value. + * + * @param integer $index + * @return string integer ($index) if not present + */ + public function enumValue($index) + { + if ($index instanceof Doctrine_Null) { + return false; + } + + return isset($this->_definition['values'][$index]) ? $this->_definition['values'][$index] : false; + } + + /** + * enumIndex + * + * @param string $field + * @param mixed $value + * @return mixed + */ + public function enumIndex($field, $value) + { + $values = $this->getEnumValues($field); + + return array_search($value, $values); + } + + /** + * count + * + * @return integer + */ + public function count() + { + return count($this->_definition); + } + + /** + * getIterator + * + * @return ArrayIterator + */ + public function getIterator() + { + return new ArrayIterator($this->_definition); + } +} diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Compiler.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Compiler.php similarity index 96% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Compiler.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Compiler.php index 7a7ba8c..9379316 100644 --- a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Compiler.php +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Compiler.php @@ -1,6 +1,6 @@ getFileName(), '.inc') === false) { + if (end($e) === 'php' && strpos($file->getFileName(), '.inc') === false + && strpos($file->getFileName(), 'sfYaml') === false) { require_once $file->getPathName(); } } diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Compiler/Exception.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Compiler/Exception.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Compiler/Exception.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Compiler/Exception.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Configurable.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Configurable.php similarity index 97% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Configurable.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Configurable.php index 0db5c1d..5a3493e 100644 --- a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Configurable.php +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Configurable.php @@ -1,6 +1,6 @@ */ abstract class Doctrine_Configurable extends Doctrine_Locator_Injectable @@ -49,7 +49,7 @@ abstract class Doctrine_Configurable extends Doctrine_Locator_Injectable * implementation classes */ protected $_impl = array(); - + /** * @var array $_params an array of user defined parameters */ @@ -87,6 +87,7 @@ public function setAttribute($attribute, $value) case Doctrine_Core::ATTR_CACHE: case Doctrine_Core::ATTR_RESULT_CACHE: case Doctrine_Core::ATTR_QUERY_CACHE: + case Doctrine_Core::ATTR_TABLE_CACHE: if ($value !== null) { if ( ! ($value instanceof Doctrine_Cache_Interface)) { throw new Doctrine_Exception('Cache driver should implement Doctrine_Cache_Interface'); @@ -121,43 +122,43 @@ public function getParams($namespace = null) if ($namespace == null) { $namespace = $this->getAttribute(Doctrine_Core::ATTR_DEFAULT_PARAM_NAMESPACE); } - + if ( ! isset($this->_params[$namespace])) { return null; } return $this->_params[$namespace]; } - + public function getParamNamespaces() { return array_keys($this->_params); } - public function setParam($name, $value, $namespace = null) + public function setParam($name, $value, $namespace = null) { if ($namespace == null) { $namespace = $this->getAttribute(Doctrine_Core::ATTR_DEFAULT_PARAM_NAMESPACE); } - + $this->_params[$namespace][$name] = $value; - + return $this; } - - public function getParam($name, $namespace = null) + + public function getParam($name, $namespace = null) { if ($namespace == null) { $namespace = $this->getAttribute(Doctrine_Core::ATTR_DEFAULT_PARAM_NAMESPACE); } - + if ( ! isset($this->_params[$namespace][$name])) { if (isset($this->parent)) { return $this->parent->getParam($name, $namespace); } return null; } - + return $this->_params[$namespace][$name]; } @@ -194,8 +195,8 @@ public function getImpl($template) } return $this->_impl[$template]; } - - + + public function hasImpl($template) { if ( ! isset($this->_impl[$template])) { @@ -331,7 +332,7 @@ public function getAttribute($attribute) if (isset($this->attributes[$attribute])) { return $this->attributes[$attribute]; } - + if (isset($this->parent)) { return $this->parent->getAttribute($attribute); } @@ -424,4 +425,4 @@ public function getParent() { return $this->parent; } -} \ No newline at end of file +} diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection.php similarity index 96% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection.php index e094bc0..a6703a2 100644 --- a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection.php +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection.php @@ -1,6 +1,6 @@ * @author Lukas Smith (MDB2 library) */ @@ -179,9 +179,15 @@ abstract class Doctrine_Connection extends Doctrine_Configurable implements Coun * @var array $_userFkNames array of foreign key names that have been used */ protected $_usedNames = array( - 'foreign_keys' => array(), - 'indexes' => array() - ); + 'foreign_keys' => array(), + 'indexes' => array() + ); + + /** + * @var Doctrine_Cache_Interface The cache driver used for caching tables. + */ + protected $_tableCache; + protected $_tableCacheTTL; /** * the constructor @@ -219,6 +225,8 @@ public function __construct(Doctrine_Manager $manager, $adapter, $user = null, $ $this->setAttribute(Doctrine_Core::ATTR_ERRMODE, Doctrine_Core::ERRMODE_EXCEPTION); $this->getAttribute(Doctrine_Core::ATTR_LISTENER)->onOpen($this); + + $this->_tableCacheTTL = $this->getAttribute(Doctrine_Core::ATTR_TABLE_CACHE_LIFESPAN); } /** @@ -1116,6 +1124,20 @@ public function getTable($name) return $this->tables[$name]; } + $hasTableCache = $this->_tableCache !== false && ($this->_tableCache || $this->getAttribute(Doctrine_Core::ATTR_TABLE_CACHE)); + if ($hasTableCache) { + $tableCacheDriver = $this->getTableCacheDriver(); + $hash = md5($name . 'DOCTRINE_TABLE_CACHE_SALT'); + $cached = $tableCacheDriver->fetch($hash); + + if ($cached) { + $table = unserialize($cached); + $table->initializeFromCache($this); + + return $this->tables[$name] = $table; + } + } + $class = sprintf($this->getAttribute(Doctrine_Core::ATTR_TABLE_CLASS_FORMAT), $name); if (class_exists($class, $this->getAttribute(Doctrine_Core::ATTR_AUTOLOAD_TABLE_CLASSES)) && @@ -1126,6 +1148,11 @@ public function getTable($name) $table = new $tableClass($name, $this, true); } + if ($hasTableCache) { + // Save cached query + $tableCacheDriver->save($hash, serialize($table), $this->getTableCacheLifeSpan()); + } + return $table; } @@ -1181,6 +1208,7 @@ public function addTable(Doctrine_Table $table) return false; } $this->tables[$name] = $table; + return true; } @@ -1337,6 +1365,30 @@ public function getQueryCacheDriver() return $this->getAttribute(Doctrine_Core::ATTR_QUERY_CACHE); } + /** + * getQueryCacheDriver + * + * @return Doctrine_Cache_Interface + */ + public function getTableCacheDriver() + { + if ( ! $this->getAttribute(Doctrine_Core::ATTR_TABLE_CACHE)) { + throw new Doctrine_Exception('Query Cache driver not initialized.'); + } + + return $this->getAttribute(Doctrine_Core::ATTR_TABLE_CACHE); + } + + /** + * Gets the life span of the table cache the Query object is using. + * + * @return integer The life span in seconds. + */ + public function getTableCacheLifeSpan() + { + return $this->_tableCacheTTL; + } + /** * lastInsertId * @@ -1661,4 +1713,4 @@ protected function _generateUniqueName($type, $parts, $key, $format = '%s', $max return $name; } -} \ No newline at end of file +} diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Common.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Common.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Common.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Common.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Db2.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Db2.php similarity index 93% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Db2.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Db2.php index 92b381c..ad9d150 100644 --- a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Db2.php +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Db2.php @@ -46,7 +46,7 @@ public function modifyLimitQuery($query, $limit = false, $offset = false, $isMan return $query; if ($offset == 0) { - return $query . ' FETCH FIRST '. $limit .' ROWS ONLY'; + return $query . ' FETCH FIRST '. (int)$limit .' ROWS ONLY'; } else { $sqlPieces = explode('from', $query); $select = $sqlPieces[0]; @@ -56,8 +56,8 @@ public function modifyLimitQuery($query, $limit = false, $offset = false, $isMan $sql = 'WITH OFFSET AS(' . $select . ', ROW_NUMBER() ' . 'OVER(ORDER BY ' . $col[1] . ') AS doctrine_rownum FROM ' . $table . ')' . - $select . 'FROM OFFSET WHERE doctrine_rownum BETWEEN ' . $offset . - 'AND ' . ($offset + $limit - 1); + $select . 'FROM OFFSET WHERE doctrine_rownum BETWEEN ' . (int)$offset . + 'AND ' . ((int)$offset + (int)$limit - 1); return $sql; } } diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Exception.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Exception.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Exception.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Exception.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Mock.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Mock.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Mock.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Mock.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Module.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Module.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Module.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Module.php diff --git a/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Mssql.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Mssql.php new file mode 100644 index 0000000..ecce33f --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Mssql.php @@ -0,0 +1,383 @@ +. + */ + +/** + * Doctrine_Connection_Mssql + * + * @package Doctrine + * @subpackage Connection + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @author Konsta Vesterinen + * @author Lukas Smith (PEAR MDB2 library) + * @version $Revision: 7690 $ + * @link www.doctrine-project.org + * @since 1.0 + */ +class Doctrine_Connection_Mssql extends Doctrine_Connection_Common +{ + /** + * @var string $driverName the name of this connection driver + */ + protected $driverName = 'Mssql'; + + /** + * the constructor + * + * @param Doctrine_Manager $manager + * @param PDO $pdo database handle + */ + public function __construct(Doctrine_Manager $manager, $adapter) + { + // initialize all driver options + $this->supported = array( + 'sequences' => 'emulated', + 'indexes' => true, + 'affected_rows' => true, + 'transactions' => true, + 'summary_functions' => true, + 'order_by_text' => true, + 'current_id' => 'emulated', + 'limit_queries' => 'emulated', + 'LOBs' => true, + 'replace' => 'emulated', + 'sub_selects' => true, + 'auto_increment' => true, + 'primary_key' => true, + 'result_introspection' => true, + 'prepared_statements' => 'emulated', + ); + + $this->properties['varchar_max_length'] = 8000; + + parent::__construct($manager, $adapter); + } + + /** + * quoteIdentifier + * Quote a string so it can be safely used as a table / column name + * + * Quoting style depends on which database driver is being used. + * + * @param string $identifier identifier name to be quoted + * @param bool $checkOption check the 'quote_identifier' option + * + * @return string quoted identifier string + */ + public function quoteIdentifier($identifier, $checkOption = false) + { + if ($checkOption && ! $this->getAttribute(Doctrine_Core::ATTR_QUOTE_IDENTIFIER)) { + return $identifier; + } + + if (strpos($identifier, '.') !== false) { + $parts = explode('.', $identifier); + $quotedParts = array(); + foreach ($parts as $p) { + $quotedParts[] = $this->quoteIdentifier($p); + } + + return implode('.', $quotedParts); + } + + return '[' . trim($identifier, '[]') . ']'; + } + + /** + * Adds an adapter-specific LIMIT clause to the SELECT statement. + * Inspired by Doctrine2 DBAL + * + * @param string $query + * @param mixed $limit + * @param mixed $offset + * @param boolean $isSubQuery + * @param Doctrine_Query $queryOrigin + * @link https://github.com/doctrine/dbal/blob/master/lib/Doctrine/DBAL/Platforms/MsSqlPlatform.php#L607 + * @link http://www.toosweettobesour.com/2010/09/16/doctrine-1-2-mssql-alternative-limitpaging/ + * @return string + */ + public function modifyLimitQuery($query, $limit = false, $offset = false, $isManip = false, $isSubQuery = false, Doctrine_Query $queryOrigin = null) + { + if ($limit === false || !($limit > 0)) { + return $query; + } + + $orderby = stristr($query, 'ORDER BY'); + + if ($offset !== false && $orderby === false) { + throw new Doctrine_Connection_Exception("OFFSET cannot be used in MSSQL without ORDER BY due to emulation reasons."); + } + + $limit = intval($limit); + $offset = intval($offset); + + if ($offset < 0) { + throw new Doctrine_Connection_Exception("LIMIT argument offset=$offset is not valid"); + } + + if ($offset == 0) { + $query = preg_replace('/^SELECT( DISTINCT)?\s/i', 'SELECT\1 TOP ' . $limit . ' ', $query); + } else { + $over = stristr($query, 'ORDER BY'); + + if (!$over) { + $over = 'ORDER BY (SELECT 0)'; + } else { + // Remove ORDER BY clause from $query + $query = stristr($query, 'ORDER BY', true); + } + + // Remove the first SELECT from query + $query = substr($query, strlen('SELECT ')); + $select = 'SELECT'; + + if (0 === strpos($query, 'DISTINCT')) + { + $query = substr($query, strlen('DISTINCT ')); + $select .= ' DISTINCT'; + } + + $start = $offset + 1; + $end = $offset + $limit; + + $query = "SELECT * FROM ($select ROW_NUMBER() OVER ($over) AS [DOCTRINE_ROWNUM], $query) AS [doctrine_tbl] WHERE [DOCTRINE_ROWNUM] BETWEEN $start AND $end"; + } + + return $query; + } + + + /** + * Parse an OrderBy-Statement into chunks + * + * @param string $orderby + */ + private function parseOrderBy($orderby) + { + $matches = array(); + $chunks = array(); + $tokens = array(); + $parsed = str_ireplace('ORDER BY', '', $orderby); + + preg_match_all('/(\w+\(.+?\)\s+(ASC|DESC)),?/', $orderby, $matches); + + $matchesWithExpressions = $matches[1]; + + foreach ($matchesWithExpressions as $match) { + $chunks[] = $match; + $parsed = str_replace($match, '##' . (count($chunks) - 1) . '##', $parsed); + } + + $tokens = preg_split('/,/', $parsed); + + for ($i = 0, $iMax = count($tokens); $i < $iMax; $i++) { + $tokens[$i] = trim(preg_replace_callback('/##(\d+)##/', function($m) { return $chunks[$m[1]]; }, $tokens[$i])); + } + + return $tokens; + } + + /** + * Order and Group By are not possible on columns from type text. + * This method fix this issue by wrap the given term (column) into a CAST directive. + * + * @see DC-828 + * @param Doctrine_Table $table + * @param string $field + * @param string $term The term which will changed if it's necessary, depending to the field type. + * @return string + */ + public function modifyOrderByColumn(Doctrine_Table $table, $field, $term) + { + $def = $table->getDefinitionOf($field); + + if ($def['type'] == 'string' && $def['length'] === NULL) { + $term = 'CAST(' . $term . ' AS varchar(8000))'; + } + + return $term; + } + + /** + * Creates dbms specific LIMIT/OFFSET SQL for the subqueries that are used in the + * context of the limit-subquery algorithm. + * + * @return string + */ + public function modifyLimitSubquery(Doctrine_Table $rootTable, $query, $limit = false, $offset = false, $isManip = false) + { + return $this->modifyLimitQuery($query, $limit, $offset, $isManip, true); + } + + /** + * return version information about the server + * + * @param bool $native determines if the raw version string should be returned + * @return array version information + */ + public function getServerVersion($native = false) + { + if ($this->serverInfo) { + $serverInfo = $this->serverInfo; + } else { + $query = 'SELECT @@VERSION'; + $serverInfo = $this->fetchOne($query); + } + // cache server_info + $this->serverInfo = $serverInfo; + if ( ! $native) { + if (preg_match('/([0-9]+)\.([0-9]+)\.([0-9]+)/', $serverInfo, $tmp)) { + $serverInfo = array( + 'major' => $tmp[1], + 'minor' => $tmp[2], + 'patch' => $tmp[3], + 'extra' => null, + 'native' => $serverInfo, + ); + } else { + $serverInfo = array( + 'major' => null, + 'minor' => null, + 'patch' => null, + 'extra' => null, + 'native' => $serverInfo, + ); + } + } + return $serverInfo; + } + + /** + * Checks if there's a sequence that exists. + * + * @param string $seq_name The sequence name to verify. + * @return boolean The value if the table exists or not + */ + public function checkSequence($seqName) + { + $query = 'SELECT * FROM ' . $seqName; + try { + $this->exec($query); + } catch(Doctrine_Connection_Exception $e) { + if ($e->getPortableCode() == Doctrine_Core::ERR_NOSUCHTABLE) { + return false; + } + + throw $e; + } + return true; + } + + /** + * execute + * @param string $query sql query + * @param array $params query parameters + * + * @return PDOStatement|Doctrine_Adapter_Statement + */ + public function execute($query, array $params = array()) + { + if(! empty($params)) { + $query = $this->replaceBoundParamsWithInlineValuesInQuery($query, $params); + } + + return parent::execute($query, array()); + } + + /** + * execute + * @param string $query sql query + * @param array $params query parameters + * + * @return PDOStatement|Doctrine_Adapter_Statement + */ + public function exec($query, array $params = array()) + { + if(! empty($params)) { + $query = $this->replaceBoundParamsWithInlineValuesInQuery($query, $params); + } + + return parent::exec($query, array()); + } + + /** + * Replaces bound parameters and their placeholders with explicit values. + * + * Workaround for http://bugs.php.net/36561 + * + * @param string $query + * @param array $params + */ + protected function replaceBoundParamsWithInlineValuesInQuery($query, array $params) + { + foreach($params as $key => $value) { + $re = '/(?<=WHERE|VALUES|SET|JOIN)(.*?)(\?)/'; + $query = preg_replace($re, "\\1##{$key}##", $query, 1); + } + + $self = $this; + $query = preg_replace_callback('/##(\d+)##/', function($m) use ($params, $self) { + return (null === $params[$m[1]]) ? 'NULL' : $self->quote($params[$m[1]]); + }, $query); + + return $query; + } + + /** + * Inserts a table row with specified data. + * + * @param Doctrine_Table $table The table to insert data into. + * @param array $values An associative array containing column-value pairs. + * Values can be strings or Doctrine_Expression instances. + * @return integer the number of affected rows. Boolean false if empty value array was given, + */ + public function insert(Doctrine_Table $table, array $fields) + { + $identifiers = $table->getIdentifierColumnNames(); + + $settingNullIdentifier = false; + $fields = array_change_key_case($fields); + foreach($identifiers as $identifier) { + $lcIdentifier = strtolower($identifier); + + if(array_key_exists($lcIdentifier, $fields)) { + if(is_null($fields[$lcIdentifier])) { + $settingNullIdentifier = true; + unset($fields[$lcIdentifier]); + } + } + } + + // MSSQL won't allow the setting of identifier columns to null, so insert a default record and then update it + if ($settingNullIdentifier) { + $count = $this->exec('INSERT INTO ' . $this->quoteIdentifier($table->getTableName()) . ' DEFAULT VALUES'); + + if(! $count) { + return $count; + } + + $id = $this->lastInsertId($table->getTableName()); + + return $this->update($table, $fields, array($id)); + } + + return parent::insert($table, $fields); + } +} diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Mssql/Exception.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Mssql/Exception.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Mssql/Exception.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Mssql/Exception.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Mysql.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Mysql.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Mysql.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Mysql.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Mysql/Exception.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Mysql/Exception.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Mysql/Exception.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Mysql/Exception.php diff --git a/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Oracle.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Oracle.php new file mode 100644 index 0000000..6649abf --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Oracle.php @@ -0,0 +1,162 @@ +. + */ + +/** + * Doctrine_Connection_Oracle + * + * @package Doctrine + * @subpackage Connection + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @link www.doctrine-project.org + * @since 1.0 + * @version $Revision: 7664 $ + * @author Konsta Vesterinen + */ +class Doctrine_Connection_Oracle extends Doctrine_Connection_Common +{ + /** + * @var string $driverName the name of this connection driver + */ + protected $driverName = 'Oracle'; + + public function __construct(Doctrine_Manager $manager, $adapter) + { + $this->supported = array( + 'sequences' => true, + 'indexes' => true, + 'summary_functions' => true, + 'order_by_text' => true, + 'current_id' => true, + 'affected_rows' => true, + 'transactions' => true, + 'savepoints' => true, + 'limit_queries' => true, + 'LOBs' => true, + 'replace' => 'emulated', + 'sub_selects' => true, + 'auto_increment' => false, // implementation is broken + 'primary_key' => true, + 'result_introspection' => true, + 'prepared_statements' => true, + 'identifier_quoting' => true, + 'pattern_escaping' => true, + ); + + $this->properties['sql_file_delimiter'] = "\n/\n"; + $this->properties['number_max_precision'] = 38; + $this->properties['max_identifier_length'] = 30; + + parent::__construct($manager, $adapter); + + // moving properties to params to make them changeable by user + // VARCHAR2 allowed length is 4000 BYTE. For UTF8 strings is better to use 1000 CHAR + $this->setParam('varchar2_max_length', 4000); + // Oracle's default unit for char data types is BYTE. For UTF8 string it is better to use CHAR + $this->setParam('char_unit', null); + } + + /** + * Sets up the date/time format + * + */ + public function setDateFormat($format = 'YYYY-MM-DD HH24:MI:SS') + { + $this->exec('ALTER SESSION SET NLS_DATE_FORMAT = "' . $format . '"'); + } + + /** + * Adds an driver-specific LIMIT clause to the query + * + * @param string $query query to modify + * @param integer $limit limit the number of rows + * @param integer $offset start reading from given offset + * @return string the modified query + */ + public function modifyLimitQuery($query, $limit = false, $offset = false, $isManip = false) + { + return $this->_createLimitSubquery($query, $limit, $offset); + } + + private function _createLimitSubquery($query, $limit, $offset, $column = null) + { + $limit = (int) $limit; + $offset = (int) $offset; + if (preg_match('/^\s*SELECT/i', $query)) { + if ( ! preg_match('/\sFROM\s/i', $query)) { + $query .= " FROM dual"; + } + if ($limit > 0) { + $max = $offset + $limit; + $column = $column === null ? '*' : $this->quoteIdentifier($column); + if ($offset > 0) { + $min = $offset + 1; + $query = 'SELECT '.$this->quoteIdentifier('b').'.'.$column.' FROM ( '. + 'SELECT '.$this->quoteIdentifier('a').'.*, ROWNUM AS doctrine_rownum FROM ( ' + . $query . ' ) ' . $this->quoteIdentifier('a') . ' '. + ' ) ' . $this->quoteIdentifier('b') . ' '. + 'WHERE doctrine_rownum BETWEEN ' . $min . ' AND ' . $max; + } else { + $query = 'SELECT a.'.$column.' FROM ( ' . $query .' ) a WHERE ROWNUM <= ' . $max; + } + } + } + return $query; + } + + /** + * Creates the SQL for Oracle that can be used in the subquery for the limit-subquery + * algorithm. + */ + public function modifyLimitSubquery(Doctrine_Table $rootTable, $query, $limit = false, + $offset = false, $isManip = false) + { + // NOTE: no composite key support + $columnNames = $rootTable->getIdentifierColumnNames(); + if (count($columnNames) > 1) { + throw new Doctrine_Connection_Exception("Composite keys in LIMIT queries are " + . "currently not supported."); + } + $column = $columnNames[0]; + return $this->_createLimitSubquery($query, $limit, $offset, $column); + } + + public function getTmpConnection($info) + { + return clone $this; + } + + /** + * Override quote behaviour for boolean to fix issues with quoting of + * boolean values. + */ + public function quote($input, $type = null) + { + if ($type === 'boolean') { + if ($input === null) { + return null; + } else { + return $input ? 1 : 0; + } + } else { + return parent::quote($input, $type); + } + } +} \ No newline at end of file diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Oracle/Exception.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Oracle/Exception.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Oracle/Exception.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Oracle/Exception.php diff --git a/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Pgsql.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Pgsql.php new file mode 100644 index 0000000..2fbc19d --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Pgsql.php @@ -0,0 +1,246 @@ +. + */ + +/** + * Doctrine_Connection_Pgsql + * + * @package Doctrine + * @subpackage Connection + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @author Konsta Vesterinen + * @author Lukas Smith (PEAR MDB2 library) + * @version $Revision: 7490 $ + * @link www.doctrine-project.org + * @since 1.0 + */ +class Doctrine_Connection_Pgsql extends Doctrine_Connection_Common +{ + /** + * @var string $driverName the name of this connection driver + */ + protected $driverName = 'Pgsql'; + + /** + * the constructor + * + * @param Doctrine_Manager $manager + * @param PDO $pdo database handle + */ + public function __construct(Doctrine_Manager $manager, $adapter) + { + // initialize all driver options + $this->supported = array( + 'sequences' => true, + 'indexes' => true, + 'affected_rows' => true, + 'summary_functions' => true, + 'order_by_text' => true, + 'transactions' => true, + 'savepoints' => true, + 'current_id' => true, + 'limit_queries' => true, + 'LOBs' => true, + 'replace' => 'emulated', + 'sub_selects' => true, + 'auto_increment' => 'emulated', + 'primary_key' => true, + 'result_introspection' => true, + 'prepared_statements' => true, + 'identifier_quoting' => true, + 'pattern_escaping' => true, + ); + + $this->properties['string_quoting'] = array('start' => "'", + 'end' => "'", + 'escape' => "'", + 'escape_pattern' => '\\'); + + $this->properties['identifier_quoting'] = array('start' => '"', + 'end' => '"', + 'escape' => '"'); + parent::__construct($manager, $adapter); + } + + /** + * Set the charset on the current connection + * + * @param string charset + * + * @return void + */ + public function setCharset($charset) + { + $query = 'SET NAMES '.$this->quote($charset); + $this->exec($query); + parent::setCharset($charset); + } + + /** + * convertBoolean + * some drivers need the boolean values to be converted into integers + * when using DQL API + * + * This method takes care of that conversion + * + * @param array $item + * @return void + */ + public function convertBooleans($item) + { + if (is_array($item)) { + foreach ($item as $key => $value) { + if (is_bool($value)) { + $item[$key] = ($value) ? 'true' : 'false'; + } + } + } else { + if (is_bool($item) || is_numeric($item)) { + $item = ($item) ? 'true' : 'false'; + } + } + return $item; + } + + /** + * Changes a query string for various DBMS specific reasons + * + * @param string $query query to modify + * @param integer $limit limit the number of rows + * @param integer $offset start reading from given offset + * @param boolean $isManip if the query is a DML query + * @return string modified query + */ + public function modifyLimitQuery($query, $limit = false, $offset = false, $isManip = false) + { + if ($limit > 0) { + $query = rtrim($query); + + if (substr($query, -1) == ';') { + $query = substr($query, 0, -1); + } + + if ($isManip) { + $manip = preg_replace('/^(DELETE FROM|UPDATE).*$/', '\\1', $query); + $from = $match[2]; + $where = $match[3]; + $query = $manip . ' ' . $from . ' WHERE ctid=(SELECT ctid FROM ' + . $from . ' ' . $where . ' LIMIT ' . (int)$limit . ')'; + + } else { + if ( ! empty($limit)) { + $query .= ' LIMIT ' . (int)$limit; + } + if ( ! empty($offset)) { + $query .= ' OFFSET ' . (int)$offset; + } + } + } + return $query; + } + + /** + * return version information about the server + * + * @param string $native determines if the raw version string should be returned + * @return array|string an array or string with version information + */ + public function getServerVersion($native = false) + { + $query = 'SHOW SERVER_VERSION'; + + $serverInfo = $this->fetchOne($query); + + if ( ! $native) { + $tmp = explode('.', $serverInfo, 3); + + if (empty($tmp[2]) && isset($tmp[1]) + && preg_match('/(\d+)(.*)/', $tmp[1], $tmp2) + ) { + $serverInfo = array( + 'major' => $tmp[0], + 'minor' => $tmp2[1], + 'patch' => null, + 'extra' => $tmp2[2], + 'native' => $serverInfo, + ); + } else { + $serverInfo = array( + 'major' => isset($tmp[0]) ? $tmp[0] : null, + 'minor' => isset($tmp[1]) ? $tmp[1] : null, + 'patch' => isset($tmp[2]) ? $tmp[2] : null, + 'extra' => null, + 'native' => $serverInfo, + ); + } + } + return $serverInfo; + } + + /** + * Inserts a table row with specified data. + * + * @param Doctrine_Table $table The table to insert data into. + * @param array $values An associative array containing column-value pairs. + * Values can be strings or Doctrine_Expression instances. + * @return integer the number of affected rows. Boolean false if empty value array was given, + */ + public function insert(Doctrine_Table $table, array $fields) + { + $tableName = $table->getTableName(); + + // column names are specified as array keys + $cols = array(); + // the query VALUES will contain either expresions (eg 'NOW()') or ? + $a = array(); + + foreach ($fields as $fieldName => $value) { + if ($table->isIdentifier($fieldName) + && $table->isIdentifierAutoincrement() + && $value == null) { + // Autoincrement fields should not be added to the insert statement + // if their value is null + unset($fields[$fieldName]); + continue; + } + $cols[] = $this->quoteIdentifier($table->getColumnName($fieldName)); + if ($value instanceof Doctrine_Expression) { + $a[] = $value->getSql(); + unset($fields[$fieldName]); + } else { + $a[] = '?'; + } + } + + if (count($fields) == 0) { + // Real fix #1786 and #2327 (default values when table is just 'id' as PK) + return $this->exec('INSERT INTO ' . $this->quoteIdentifier($tableName) + . ' ' + . ' VALUES (DEFAULT)'); + } + + // build the statement + $query = 'INSERT INTO ' . $this->quoteIdentifier($tableName) + . ' (' . implode(', ', $cols) . ')' + . ' VALUES (' . implode(', ', $a) . ')'; + + return $this->exec($query, array_values($fields)); + } +} diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Pgsql/Exception.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Pgsql/Exception.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Pgsql/Exception.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Pgsql/Exception.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Profiler.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Profiler.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Profiler.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Profiler.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Profiler/Exception.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Profiler/Exception.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Profiler/Exception.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Profiler/Exception.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Sqlite.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Sqlite.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Sqlite.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Sqlite.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Sqlite/Exception.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Sqlite/Exception.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Sqlite/Exception.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Sqlite/Exception.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Statement.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Statement.php similarity index 96% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Statement.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Statement.php index ccbec13..7ad3215 100644 --- a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Connection/Statement.php +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/Statement.php @@ -59,7 +59,16 @@ public function __construct(Doctrine_Connection $conn, $stmt) throw new Doctrine_Exception('Unknown statement object given.'); } } - + /** + * destructor + * + * make sure that the cursor is closed + * + */ + public function __destruct() + { + $this->closeCursor(); + } /** * getConnection * returns the connection object this statement uses @@ -224,7 +233,7 @@ public function errorInfo() * bound parameters in the SQL statement being executed. * @return boolean Returns TRUE on success or FALSE on failure. */ - public function execute($params = null) + public function execute($params = array()) { try { $event = new Doctrine_Event($this, Doctrine_Event::STMT_EXECUTE, $this->getQuery(), $params); @@ -261,6 +270,14 @@ public function execute($params = null) $this->_conn->getListener()->postStmtExecute($event); + //fix a possible "ORA-01000: maximum open cursors exceeded" when many non-SELECTs are executed and the profiling is enabled + if ('Oracle' == $this->getConnection()->getDriverName()) { + $queryBeginningSubstring = strtoupper(substr(ltrim($this->_stmt->queryString), 0, 6)); + if ($queryBeginningSubstring != 'SELECT' && substr($queryBeginningSubstring, 0, 4) != 'WITH' ){ + $this->closeCursor(); + } + } + return $result; } catch (PDOException $e) { } catch (Doctrine_Adapter_Exception $e) { diff --git a/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/UnitOfWork.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/UnitOfWork.php new file mode 100644 index 0000000..9627d6d --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Connection/UnitOfWork.php @@ -0,0 +1,960 @@ +. + */ + +/** + * Doctrine_Connection_UnitOfWork + * + * Note: This class does not have the semantics of a real "Unit of Work" in 0.10/1.0. + * Database operations are not queued. All changes to objects are immediately written + * to the database. You can think of it as a unit of work in auto-flush mode. + * + * Referential integrity is currently not always ensured. + * + * @package Doctrine + * @subpackage Connection + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @link www.doctrine-project.org + * @since 1.0 + * @version $Revision: 7684 $ + * @author Konsta Vesterinen + * @author Roman Borschel + */ +class Doctrine_Connection_UnitOfWork extends Doctrine_Connection_Module +{ + /** + * Saves the given record and all associated records. + * (The save() operation is always cascaded in 0.10/1.0). + * + * @param Doctrine_Record $record + * @return void + */ + public function saveGraph(Doctrine_Record $record, $replace = false) + { + $record->assignInheritanceValues(); + + $conn = $this->getConnection(); + $conn->connect(); + + $state = $record->state(); + if ($state === Doctrine_Record::STATE_LOCKED || $state === Doctrine_Record::STATE_TLOCKED) { + return false; + } + + $record->state($record->exists() ? Doctrine_Record::STATE_LOCKED : Doctrine_Record::STATE_TLOCKED); + + try { + $conn->beginInternalTransaction(); + $record->state($state); + + $event = $record->invokeSaveHooks('pre', 'save'); + $state = $record->state(); + + $isValid = true; + + if ( ! $event->skipOperation) { + $this->saveRelatedLocalKeys($record); + + switch ($state) { + case Doctrine_Record::STATE_TDIRTY: + case Doctrine_Record::STATE_TCLEAN: + if ($replace) { + $isValid = $this->replace($record); + } else { + $isValid = $this->insert($record); + } + break; + case Doctrine_Record::STATE_DIRTY: + case Doctrine_Record::STATE_PROXY: + if ($replace) { + $isValid = $this->replace($record); + } else { + $isValid = $this->update($record); + } + break; + case Doctrine_Record::STATE_CLEAN: + // do nothing + break; + } + + $aliasesUnlinkInDb = array(); + + if ($isValid) { + // NOTE: what about referential integrity issues? + foreach ($record->getPendingDeletes() as $pendingDelete) { + $pendingDelete->delete(); + } + + foreach ($record->getPendingUnlinks() as $alias => $ids) { + if ($ids === false) { + $record->unlinkInDb($alias, array()); + $aliasesUnlinkInDb[] = $alias; + } else if ($ids) { + $record->unlinkInDb($alias, array_keys($ids)); + $aliasesUnlinkInDb[] = $alias; + } + } + $record->resetPendingUnlinks(); + + $record->invokeSaveHooks('post', 'save', $event); + } else { + $conn->transaction->addInvalid($record); + } + + $state = $record->state(); + + $record->state($record->exists() ? Doctrine_Record::STATE_LOCKED : Doctrine_Record::STATE_TLOCKED); + + if ($isValid) { + $saveLater = $this->saveRelatedForeignKeys($record); + foreach ($saveLater as $fk) { + $alias = $fk->getAlias(); + + if ($record->hasReference($alias)) { + $obj = $record->$alias; + + // check that the related object is not an instance of Doctrine_Null + if ($obj && ! ($obj instanceof Doctrine_Null)) { + $processDiff = !in_array($alias, $aliasesUnlinkInDb); + $obj->save($conn, $processDiff); + } + } + } + + // save the MANY-TO-MANY associations + $this->saveAssociations($record); + } + } + + $record->state($state); + + $conn->commit(); + } catch (Exception $e) { + // Make sure we roll back our internal transaction + //$record->state($state); + $conn->rollback(); + throw $e; + } + + $record->clearInvokedSaveHooks(); + + return true; + } + + /** + * Deletes the given record and all the related records that participate + * in an application-level delete cascade. + * + * this event can be listened by the onPreDelete and onDelete listeners + * + * @return boolean true on success, false on failure + */ + public function delete(Doctrine_Record $record) + { + $deletions = array(); + $this->_collectDeletions($record, $deletions); + return $this->_executeDeletions($deletions); + } + + /** + * Collects all records that need to be deleted by applying defined + * application-level delete cascades. + * + * @param array $deletions Map of the records to delete. Keys=Oids Values=Records. + */ + private function _collectDeletions(Doctrine_Record $record, array &$deletions) + { + if ( ! $record->exists()) { + return; + } + + $deletions[$record->getOid()] = $record; + $this->_cascadeDelete($record, $deletions); + } + + /** + * Executes the deletions for all collected records during a delete operation + * (usually triggered through $record->delete()). + * + * @param array $deletions Map of the records to delete. Keys=Oids Values=Records. + */ + private function _executeDeletions(array $deletions) + { + // collect class names + $classNames = array(); + foreach ($deletions as $record) { + $classNames[] = $record->getTable()->getComponentName(); + } + $classNames = array_unique($classNames); + + // order deletes + $executionOrder = $this->buildFlushTree($classNames); + + // execute + try { + $this->conn->beginInternalTransaction(); + + for ($i = count($executionOrder) - 1; $i >= 0; $i--) { + $className = $executionOrder[$i]; + $table = $this->conn->getTable($className); + + // collect identifiers + $identifierMaps = array(); + $deletedRecords = array(); + foreach ($deletions as $oid => $record) { + if ($record->getTable()->getComponentName() == $className) { + $veto = $this->_preDelete($record); + if ( ! $veto) { + $identifierMaps[] = $record->identifier(); + $deletedRecords[] = $record; + unset($deletions[$oid]); + } + } + } + + if (count($deletedRecords) < 1) { + continue; + } + + // extract query parameters (only the identifier values are of interest) + $params = array(); + $columnNames = array(); + foreach ($identifierMaps as $idMap) { + foreach($idMap as $fieldName => $value) { + $params[] = $value; + $columnNames[] = $table->getColumnName($fieldName); + } + } + $columnNames = array_unique($columnNames); + + // delete + $tableName = $table->getTableName(); + $sql = "DELETE FROM " . $this->conn->quoteIdentifier($tableName) . " WHERE "; + + if ($table->isIdentifierComposite()) { + $sql .= $this->_buildSqlCompositeKeyCondition($columnNames, count($identifierMaps)); + $this->conn->exec($sql, $params); + } else { + $sql .= $this->_buildSqlSingleKeyCondition($columnNames, count($params)); + $this->conn->exec($sql, $params); + } + + // adjust state, remove from identity map and inform postDelete listeners + foreach ($deletedRecords as $record) { + // currently just for bc! + $this->_deleteCTIParents($table, $record); + //-- + $record->state(Doctrine_Record::STATE_TCLEAN); + $record->getTable()->removeRecord($record); + $this->_postDelete($record); + } + } + + // trigger postDelete for records skipped during the deletion (veto!) + foreach ($deletions as $skippedRecord) { + $this->_postDelete($skippedRecord); + } + + $this->conn->commit(); + + return true; + } catch (Exception $e) { + $this->conn->rollback(); + throw $e; + } + } + + /** + * Builds the SQL condition to target multiple records who have a single-column + * primary key. + * + * @param Doctrine_Table $table The table from which the records are going to be deleted. + * @param integer $numRecords The number of records that are going to be deleted. + * @return string The SQL condition "pk = ? OR pk = ? OR pk = ? ..." + */ + private function _buildSqlSingleKeyCondition($columnNames, $numRecords) + { + $idColumn = $this->conn->quoteIdentifier($columnNames[0]); + return implode(' OR ', array_fill(0, $numRecords, "$idColumn = ?")); + } + + /** + * Builds the SQL condition to target multiple records who have a composite primary key. + * + * @param Doctrine_Table $table The table from which the records are going to be deleted. + * @param integer $numRecords The number of records that are going to be deleted. + * @return string The SQL condition "(pk1 = ? AND pk2 = ?) OR (pk1 = ? AND pk2 = ?) ..." + */ + private function _buildSqlCompositeKeyCondition($columnNames, $numRecords) + { + $singleCondition = ""; + foreach ($columnNames as $columnName) { + $columnName = $this->conn->quoteIdentifier($columnName); + if ($singleCondition === "") { + $singleCondition .= "($columnName = ?"; + } else { + $singleCondition .= " AND $columnName = ?"; + } + } + $singleCondition .= ")"; + $fullCondition = implode(' OR ', array_fill(0, $numRecords, $singleCondition)); + + return $fullCondition; + } + + /** + * Cascades an ongoing delete operation to related objects. Applies only on relations + * that have 'delete' in their cascade options. + * This is an application-level cascade. Related objects that participate in the + * cascade and are not yet loaded are fetched from the database. + * Exception: many-valued relations are always (re-)fetched from the database to + * make sure we have all of them. + * + * @param Doctrine_Record The record for which the delete operation will be cascaded. + * @throws PDOException If something went wrong at database level + * @return void + */ + protected function _cascadeDelete(Doctrine_Record $record, array &$deletions) + { + foreach ($record->getTable()->getRelations() as $relation) { + if ($relation->isCascadeDelete()) { + $fieldName = $relation->getAlias(); + // if it's a xToOne relation and the related object is already loaded + // we don't need to refresh. + if ( ! ($relation->getType() == Doctrine_Relation::ONE && isset($record->$fieldName))) { + $record->refreshRelated($relation->getAlias()); + } + $relatedObjects = $record->get($relation->getAlias()); + if ($relatedObjects instanceof Doctrine_Record && $relatedObjects->exists() + && ! isset($deletions[$relatedObjects->getOid()])) { + $this->_collectDeletions($relatedObjects, $deletions); + } else if ($relatedObjects instanceof Doctrine_Collection && count($relatedObjects) > 0) { + // cascade the delete to the other objects + foreach ($relatedObjects as $object) { + if ( ! isset($deletions[$object->getOid()])) { + $this->_collectDeletions($object, $deletions); + } + } + } + } + } + } + + /** + * saveRelatedForeignKeys + * saves all related (through ForeignKey) records to $record + * + * @throws PDOException if something went wrong at database level + * @param Doctrine_Record $record + */ + public function saveRelatedForeignKeys(Doctrine_Record $record) + { + $saveLater = array(); + foreach ($record->getReferences() as $k => $v) { + $rel = $record->getTable()->getRelation($k); + if ($rel instanceof Doctrine_Relation_ForeignKey) { + $saveLater[$k] = $rel; + } + } + + return $saveLater; + } + + /** + * saveRelatedLocalKeys + * saves all related (through LocalKey) records to $record + * + * @throws PDOException if something went wrong at database level + * @param Doctrine_Record $record + */ + public function saveRelatedLocalKeys(Doctrine_Record $record) + { + $state = $record->state(); + $record->state($record->exists() ? Doctrine_Record::STATE_LOCKED : Doctrine_Record::STATE_TLOCKED); + + foreach ($record->getReferences() as $k => $v) { + $rel = $record->getTable()->getRelation($k); + + $local = $rel->getLocal(); + $foreign = $rel->getForeign(); + + if ($rel instanceof Doctrine_Relation_LocalKey) { + // ONE-TO-ONE relationship + $obj = $record->get($rel->getAlias()); + + // Protection against infinite function recursion before attempting to save + if ($obj instanceof Doctrine_Record && $obj->isModified()) { + $obj->save($this->conn); + + $id = array_values($obj->identifier()); + + if ( ! empty($id)) { + foreach ((array) $rel->getLocal() as $k => $columnName) { + $field = $record->getTable()->getFieldName($columnName); + + if (isset($id[$k]) && $id[$k] && $record->getTable()->hasField($field)) { + $record->set($field, $id[$k]); + } + } + } + } + } + } + $record->state($state); + } + + /** + * saveAssociations + * + * this method takes a diff of one-to-many / many-to-many original and + * current collections and applies the changes + * + * for example if original many-to-many related collection has records with + * primary keys 1,2 and 3 and the new collection has records with primary keys + * 3, 4 and 5, this method would first destroy the associations to 1 and 2 and then + * save new associations to 4 and 5 + * + * @throws Doctrine_Connection_Exception if something went wrong at database level + * @param Doctrine_Record $record + * @return void + */ + public function saveAssociations(Doctrine_Record $record) + { + foreach ($record->getReferences() as $k => $v) { + $rel = $record->getTable()->getRelation($k); + + if ($rel instanceof Doctrine_Relation_Association) { + if ($this->conn->getAttribute(Doctrine_Core::ATTR_CASCADE_SAVES) || $v->isModified()) { + $v->save($this->conn, false); + } + + $assocTable = $rel->getAssociationTable(); + foreach ($v->getDeleteDiff() as $r) { + $query = 'DELETE FROM ' . $assocTable->getTableName() + . ' WHERE ' . $rel->getForeignRefColumnName() . ' = ?' + . ' AND ' . $rel->getLocalRefColumnName() . ' = ?'; + + $this->conn->execute($query, array($r->getIncremented(), $record->getIncremented())); + } + + foreach ($v->getInsertDiff() as $r) { + $assocRecord = $assocTable->create(); + $assocRecord->set($assocTable->getFieldName($rel->getForeign()), $r); + $assocRecord->set($assocTable->getFieldName($rel->getLocal()), $record); + $this->saveGraph($assocRecord); + } + // take snapshot of collection state, so that we know when its modified again + $v->takeSnapshot(); + } + } + } + + /** + * Invokes preDelete event listeners. + * + * @return boolean Whether a listener has used it's veto (don't delete!). + */ + private function _preDelete(Doctrine_Record $record) + { + $event = new Doctrine_Event($record, Doctrine_Event::RECORD_DELETE); + $record->preDelete($event); + $record->getTable()->getRecordListener()->preDelete($event); + + return $event->skipOperation; + } + + /** + * Invokes postDelete event listeners. + */ + private function _postDelete(Doctrine_Record $record) + { + $event = new Doctrine_Event($record, Doctrine_Event::RECORD_DELETE); + $record->postDelete($event); + $record->getTable()->getRecordListener()->postDelete($event); + } + + /** + * saveAll + * persists all the pending records from all tables + * + * @throws PDOException if something went wrong at database level + * @return void + */ + public function saveAll() + { + // get the flush tree + $tree = $this->buildFlushTree($this->conn->getTables()); + + // save all records + foreach ($tree as $name) { + $table = $this->conn->getTable($name); + foreach ($table->getRepository() as $record) { + $this->saveGraph($record); + } + } + } + + /** + * updates given record + * + * @param Doctrine_Record $record record to be updated + * @return boolean whether or not the update was successful + */ + public function update(Doctrine_Record $record) + { + $event = $record->invokeSaveHooks('pre', 'update'); + + if ($record->isValid(false, false)) { + $table = $record->getTable(); + if ( ! $event->skipOperation) { + $identifier = $record->identifier(); + if ($table->getOption('joinedParents')) { + // currrently just for bc! + $this->_updateCTIRecord($table, $record); + //-- + } else { + $array = $record->getPrepared(); + $this->conn->update($table, $array, $identifier); + } + $record->assignIdentifier(true); + } + + $record->invokeSaveHooks('post', 'update', $event); + + return true; + } + + return false; + } + + /** + * Inserts a record into database. + * + * This method inserts a transient record in the database, and adds it + * to the identity map of its correspondent table. It proxies to @see + * processSingleInsert(), trigger insert hooks and validation of data + * if required. + * + * @param Doctrine_Record $record + * @return boolean false if record is not valid + */ + public function insert(Doctrine_Record $record) + { + $event = $record->invokeSaveHooks('pre', 'insert'); + + if ($record->isValid(false, false)) { + $table = $record->getTable(); + + if ( ! $event->skipOperation) { + if ($table->getOption('joinedParents')) { + // just for bc! + $this->_insertCTIRecord($table, $record); + //-- + } else { + $this->processSingleInsert($record); + } + } + + $table->addRecord($record); + $record->invokeSaveHooks('post', 'insert', $event); + + return true; + } + + return false; + } + + /** + * Replaces a record into database. + * + * @param Doctrine_Record $record + * @return boolean false if record is not valid + */ + public function replace(Doctrine_Record $record) + { + if ($record->exists()) { + return $this->update($record); + } else { + if ($record->isValid()) { + $this->_assignSequence($record); + + $saveEvent = $record->invokeSaveHooks('pre', 'save'); + $insertEvent = $record->invokeSaveHooks('pre', 'insert'); + + $table = $record->getTable(); + $identifier = (array) $table->getIdentifier(); + $data = $record->getPrepared(); + + foreach ($data as $key => $value) { + if ($value instanceof Doctrine_Expression) { + $data[$key] = $value->getSql(); + } + } + + $result = $this->conn->replace($table, $data, $identifier); + + $record->invokeSaveHooks('post', 'insert', $insertEvent); + $record->invokeSaveHooks('post', 'save', $saveEvent); + + $this->_assignIdentifier($record); + + return true; + } else { + return false; + } + } + } + + /** + * Inserts a transient record in its table. + * + * This method inserts the data of a single record in its assigned table, + * assigning to it the autoincrement primary key (if any is defined). + * + * @param Doctrine_Record $record + * @return void + */ + public function processSingleInsert(Doctrine_Record $record) + { + $fields = $record->getPrepared(); + $table = $record->getTable(); + + // Populate fields with a blank array so that a blank records can be inserted + if (empty($fields)) { + foreach ($table->getFieldNames() as $field) { + $fields[$field] = null; + } + } + + $this->_assignSequence($record, $fields); + $this->conn->insert($table, $fields); + $this->_assignIdentifier($record); + } + + /** + * buildFlushTree + * builds a flush tree that is used in transactions + * + * The returned array has all the initialized components in + * 'correct' order. Basically this means that the records of those + * components can be saved safely in the order specified by the returned array. + * + * @param array $tables an array of Doctrine_Table objects or component names + * @return array an array of component names in flushing order + */ + public function buildFlushTree(array $tables) + { + // determine classes to order. only necessary because the $tables param + // can contain strings or table objects... + $classesToOrder = array(); + foreach ($tables as $table) { + if ( ! ($table instanceof Doctrine_Table)) { + $table = $this->conn->getTable($table, false); + } + $classesToOrder[] = $table->getComponentName(); + } + $classesToOrder = array_unique($classesToOrder); + + if (count($classesToOrder) < 2) { + return $classesToOrder; + } + + // build the correct order + $flushList = array(); + foreach ($classesToOrder as $class) { + $table = $this->conn->getTable($class, false); + $currentClass = $table->getComponentName(); + + $index = array_search($currentClass, $flushList); + + if ($index === false) { + //echo "adding $currentClass to flushlist"; + $flushList[] = $currentClass; + $index = max(array_keys($flushList)); + } + + $rels = $table->getRelations(); + + // move all foreignkey relations to the beginning + foreach ($rels as $key => $rel) { + if ($rel instanceof Doctrine_Relation_ForeignKey) { + unset($rels[$key]); + array_unshift($rels, $rel); + } + } + + foreach ($rels as $rel) { + $relatedClassName = $rel->getTable()->getComponentName(); + + if ( ! in_array($relatedClassName, $classesToOrder)) { + continue; + } + + $relatedCompIndex = array_search($relatedClassName, $flushList); + $type = $rel->getType(); + + // skip self-referenced relations + if ($relatedClassName === $currentClass) { + continue; + } + + if ($rel instanceof Doctrine_Relation_ForeignKey) { + // the related component needs to come after this component in + // the list (since it holds the fk) + + if ($relatedCompIndex !== false) { + // the component is already in the list + if ($relatedCompIndex >= $index) { + // it's already in the right place + continue; + } + + unset($flushList[$index]); + // the related comp has the fk. so put "this" comp immediately + // before it in the list + array_splice($flushList, $relatedCompIndex, 0, $currentClass); + $index = $relatedCompIndex; + } else { + $flushList[] = $relatedClassName; + } + + } else if ($rel instanceof Doctrine_Relation_LocalKey) { + // the related component needs to come before the current component + // in the list (since this component holds the fk). + + if ($relatedCompIndex !== false) { + // already in flush list + if ($relatedCompIndex <= $index) { + // it's in the right place + continue; + } + + unset($flushList[$relatedCompIndex]); + // "this" comp has the fk. so put the related comp before it + // in the list + array_splice($flushList, $index, 0, $relatedClassName); + } else { + array_unshift($flushList, $relatedClassName); + $index++; + } + } else if ($rel instanceof Doctrine_Relation_Association) { + // the association class needs to come after both classes + // that are connected through it in the list (since it holds + // both fks) + + $assocTable = $rel->getAssociationFactory(); + $assocClassName = $assocTable->getComponentName(); + + if ($relatedCompIndex !== false) { + unset($flushList[$relatedCompIndex]); + } + + array_splice($flushList, $index, 0, $relatedClassName); + $index++; + + $index3 = array_search($assocClassName, $flushList); + + if ($index3 !== false) { + if ($index3 >= $index) { + continue; + } + + unset($flushList[$index3]); + array_splice($flushList, $index - 1, 0, $assocClassName); + $index = $relatedCompIndex; + } else { + $flushList[] = $assocClassName; + } + } + } + } + + return array_values($flushList); + } + + + /* The following is all the Class Table Inheritance specific code. Support dropped + for 0.10/1.0. */ + + /** + * Class Table Inheritance code. + * Support dropped for 0.10/1.0. + * + * Note: This is flawed. We also need to delete from subclass tables. + */ + private function _deleteCTIParents(Doctrine_Table $table, $record) + { + if ($table->getOption('joinedParents')) { + foreach (array_reverse($table->getOption('joinedParents')) as $parent) { + $parentTable = $table->getConnection()->getTable($parent); + $this->conn->delete($parentTable, $record->identifier()); + } + } + } + + /** + * Class Table Inheritance code. + * Support dropped for 0.10/1.0. + */ + private function _insertCTIRecord(Doctrine_Table $table, Doctrine_Record $record) + { + $dataSet = $this->_formatDataSet($record); + $component = $table->getComponentName(); + + $classes = $table->getOption('joinedParents'); + $classes[] = $component; + + foreach ($classes as $k => $parent) { + if ($k === 0) { + $rootRecord = new $parent(); + $rootRecord->merge($dataSet[$parent]); + $this->processSingleInsert($rootRecord); + $record->assignIdentifier($rootRecord->identifier()); + } else { + foreach ((array) $rootRecord->identifier() as $id => $value) { + $dataSet[$parent][$id] = $value; + } + + $this->conn->insert($this->conn->getTable($parent), $dataSet[$parent]); + } + } + } + + /** + * Class Table Inheritance code. + * Support dropped for 0.10/1.0. + */ + private function _updateCTIRecord(Doctrine_Table $table, Doctrine_Record $record) + { + $identifier = $record->identifier(); + $dataSet = $this->_formatDataSet($record); + + $component = $table->getComponentName(); + + $classes = $table->getOption('joinedParents'); + $classes[] = $component; + + foreach ($record as $field => $value) { + if ($value instanceof Doctrine_Record) { + if ( ! $value->exists()) { + $value->save(); + } + $record->set($field, $value->getIncremented()); + } + } + + foreach ($classes as $class) { + $parentTable = $this->conn->getTable($class); + + if ( ! array_key_exists($class, $dataSet)) { + continue; + } + + $this->conn->update($this->conn->getTable($class), $dataSet[$class], $identifier); + } + } + + /** + * Class Table Inheritance code. + * Support dropped for 0.10/1.0. + */ + private function _formatDataSet(Doctrine_Record $record) + { + $table = $record->getTable(); + $dataSet = array(); + $component = $table->getComponentName(); + $array = $record->getPrepared(); + + foreach ($table->getColumns() as $columnName => $definition) { + if ( ! isset($dataSet[$component])) { + $dataSet[$component] = array(); + } + + if ( isset($definition['owner']) && ! isset($dataSet[$definition['owner']])) { + $dataSet[$definition['owner']] = array(); + } + + $fieldName = $table->getFieldName($columnName); + if (isset($definition['primary']) && $definition['primary']) { + continue; + } + + if ( ! array_key_exists($fieldName, $array)) { + continue; + } + + if (isset($definition['owner'])) { + $dataSet[$definition['owner']][$fieldName] = $array[$fieldName]; + } else { + $dataSet[$component][$fieldName] = $array[$fieldName]; + } + } + + return $dataSet; + } + + protected function _assignSequence(Doctrine_Record $record, &$fields = null) + { + $table = $record->getTable(); + $seq = $table->sequenceName; + + if ( ! empty($seq)) { + $id = $this->conn->sequence->nextId($seq); + $seqName = $table->getIdentifier(); + if ($fields) { + $fields[$seqName] = $id; + } + + $record->assignIdentifier($id); + + return $id; + } + } + + protected function _assignIdentifier(Doctrine_Record $record) + { + $table = $record->getTable(); + $identifier = $table->getIdentifier(); + $seq = $table->sequenceName; + + if (empty($seq) && !is_array($identifier) && + $table->getIdentifierType() != Doctrine_Core::IDENTIFIER_NATURAL) { + $id = false; + if ($record->$identifier == null) { + if (($driver = strtolower($this->conn->getDriverName())) == 'pgsql') { + $seq = $table->getTableName() . '_' . $table->getColumnName($identifier); + } elseif ($driver == 'oracle' || $driver == 'mssql') { + $seq = $table->getTableName(); + } + + $id = $this->conn->sequence->lastInsertId($seq); + } else { + $id = $record->$identifier; + } + + if ( ! $id) { + throw new Doctrine_Connection_Exception("Couldn't get last insert identifier."); + } + $record->assignIdentifier($id); + } else { + $record->assignIdentifier(true); + } + } +} diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Core.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Core.php similarity index 94% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Core.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Core.php index ef10b6e..382bf95 100644 --- a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Core.php +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Core.php @@ -1,6 +1,6 @@ getExtensionsClasses(); - } - /** * Load an individual model name and path in to the model loading registry * @@ -605,7 +605,7 @@ public static function loadModel($className, $path = null) * Set the directory where your models are located for PEAR style * naming convention autoloading. * - * @param string $directory + * @param string $directory * @return void */ public static function setModelsDirectory($directory) @@ -651,10 +651,10 @@ public static function loadModels($directory, $modelLoading = null, $classPrefix $it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir), RecursiveIteratorIterator::LEAVES_ONLY); - + foreach ($it as $file) { $e = explode('.', $file->getFileName()); - + if (end($e) === 'php' && strpos($file->getFileName(), '.inc') === false) { if ($modelLoading == Doctrine_Core::MODEL_LOADING_PEAR) { $className = str_replace($dir . DIRECTORY_SEPARATOR, null, $file->getPathName()); @@ -664,7 +664,7 @@ public static function loadModels($directory, $modelLoading = null, $classPrefix $className = $e[0]; } - if ($classPrefix) { + if ($classPrefix && $classPrefix != substr($className, 0, strlen($classPrefix))) { $className = $classPrefix . $className; } @@ -677,10 +677,16 @@ public static function loadModels($directory, $modelLoading = null, $classPrefix $declaredBefore = get_declared_classes(); require_once($file->getPathName()); $declaredAfter = get_declared_classes(); - - // Using array_slice because array_diff is broken is some PHP versions - $foundClasses = array_slice($declaredAfter, count($declaredBefore)); - + + if (defined('HHVM_VERSION')) { + // on HHVM get_declared_classes() returns in a different order, array_diff() works, so we have to use it + $foundClasses = array_diff($declaredAfter, $declaredBefore); + } else { + // Using array_slice because array_diff is broken is some PHP versions + // https://bugs.php.net/bug.php?id=47643 + $foundClasses = array_slice($declaredAfter, count($declaredBefore)); + } + if ($foundClasses) { foreach ($foundClasses as $className) { if (self::isValidModelClass($className)) { @@ -690,7 +696,7 @@ public static function loadModels($directory, $modelLoading = null, $classPrefix } } } - + $previouslyLoaded = array_keys(self::$_loadedModelFiles, $file->getPathName()); if ( ! empty($previouslyLoaded)) { @@ -705,9 +711,9 @@ public static function loadModels($directory, $modelLoading = null, $classPrefix } } } - + asort($loadedModels); - + return $loadedModels; } @@ -748,8 +754,14 @@ public static function initializeModels($models) Doctrine_Core::getTable($model); $declaredAfter = get_declared_classes(); - // Using array_slice because array_diff is broken is some PHP versions - $foundClasses = array_slice($declaredAfter, count($declaredBefore) - 1); + if (defined('HHVM_VERSION')) { + // on HHVM get_declared_classes() returns in a different order, array_diff() works, so we have to use it + $foundClasses = array_diff($declaredAfter, $declaredBefore); + } else { + // Using array_slice because array_diff is broken is some PHP versions + // https://bugs.php.net/bug.php?id=47643 + $foundClasses = array_slice($declaredAfter, count($declaredBefore) - 1); + } foreach ($foundClasses as $class) { if (self::isValidModelClass($class)) { $models[] = $class; @@ -803,7 +815,7 @@ public static function isValidModelClass($class) // Skip the following classes // - abstract classes // - not a subclass of Doctrine_Record - if ( ! $class->isAbstract() && $class->isSubClassOf('Doctrine_Record')) { + if ( ! $class->isAbstract() && $class->isSubclassOf('Doctrine_Record')) { return true; } @@ -1004,11 +1016,11 @@ public static function dumpData($yamlPath, $individualFiles = false) * @param string $append Whether or not to append the data * @return void */ - public static function loadData($yamlPath, $append = false) + public static function loadData($yamlPath, $append = false, $charset = 'UTF-8') { $data = new Doctrine_Data(); - return $data->importData($yamlPath, 'yml', array(), $append); + return $data->importData($yamlPath, 'yml', array(), $append, $charset); } /** @@ -1125,7 +1137,7 @@ public static function autoload($className) return true; } - if (0 !== stripos($className, 'Doctrine_') || class_exists($className, false) || interface_exists($className, false)) { + if (0 !== stripos($className, 'Doctrine') || class_exists($className, false) || interface_exists($className, false)) { return false; } @@ -1230,4 +1242,4 @@ public static function dump($var, $output = true, $indent = "") return implode("\n", $ret); } -} \ No newline at end of file +} diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Data.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Data.php similarity index 85% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Data.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Data.php index 2fb2f69..b9bcd11 100644 --- a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Data.php +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Data.php @@ -21,7 +21,7 @@ /** * Doctrine_Data - * + * * Base Doctrine_Data class for dumping and loading data to and from fixtures files. * Support formats are based on what formats are available in Doctrine_Parser such as yaml, xml, json, etc. * @@ -46,7 +46,7 @@ class Doctrine_Data /** * format - * + * * the default and current format we are working with * * @var string @@ -80,12 +80,14 @@ class Doctrine_Data */ protected $_exportIndividualFiles = false; + protected $_charset = 'UTF-8'; + /** * setFormat * * Set the current format we are working with - * - * @param string $format + * + * @param string $format * @return void */ public function setFormat($format) @@ -97,7 +99,7 @@ public function setFormat($format) * getFormat * * Get the current format we are working with - * + * * @return void */ public function getFormat() @@ -106,10 +108,10 @@ public function getFormat() } /** - * getFormats + * getFormats * * Get array of available formats - * + * * @return void */ public function getFormats() @@ -121,7 +123,7 @@ public function getFormats() * setDirectory * * Set the array/string of directories or yml file paths - * + * * @return void */ public function setDirectory($directory) @@ -133,7 +135,7 @@ public function setDirectory($directory) * getDirectory * * Get directory for dumping/loading data from and to - * + * * @return void */ public function getDirectory() @@ -145,8 +147,8 @@ public function getDirectory() * setModels * * Set the array of specified models to work with - * - * @param string $models + * + * @param string $models * @return void */ public function setModels($models) @@ -167,10 +169,10 @@ public function getModels() } /** - * _exportIndividualFiles + * _exportIndividualFiles * * Set/Get whether or not to export individual files - * + * * @return bool $_exportIndividualFiles */ public function exportIndividualFiles($bool = null) @@ -178,19 +180,29 @@ public function exportIndividualFiles($bool = null) if ($bool !== null) { $this->_exportIndividualFiles = $bool; } - + return $this->_exportIndividualFiles; } + public function setCharset($charset) + { + $this->_charset = $charset; + } + + public function getCharset() + { + return $this->_charset; + } + /** * exportData * * Interface for exporting data to fixtures files from Doctrine models * - * @param string $directory - * @param string $format - * @param string $models - * @param string $_exportIndividualFiles + * @param string $directory + * @param string $format + * @param string $models + * @param string $_exportIndividualFiles * @return void */ public function exportData($directory, $format = 'yml', $models = array(), $_exportIndividualFiles = false) @@ -199,7 +211,7 @@ public function exportData($directory, $format = 'yml', $models = array(), $_exp $export->setFormat($format); $export->setModels($models); $export->exportIndividualFiles($_exportIndividualFiles); - + return $export->doExport(); } @@ -208,17 +220,18 @@ public function exportData($directory, $format = 'yml', $models = array(), $_exp * * Interface for importing data from fixture files to Doctrine models * - * @param string $directory - * @param string $format - * @param string $models + * @param string $directory + * @param string $format + * @param string $models * @return void */ - public function importData($directory, $format = 'yml', $models = array(), $append = false) + public function importData($directory, $format = 'yml', $models = array(), $append = false, $charset = 'UTF-8') { $import = new Doctrine_Data_Import($directory); $import->setFormat($format); $import->setModels($models); - + $import->setCharset($charset); + return $import->doImport($append); } @@ -226,33 +239,33 @@ public function importData($directory, $format = 'yml', $models = array(), $appe * isRelation * * Check if a fieldName on a Doctrine_Record is a relation, if it is we return that relationData - * - * @param string $Doctrine_Record - * @param string $fieldName + * + * @param string $Doctrine_Record + * @param string $fieldName * @return void */ public function isRelation(Doctrine_Record $record, $fieldName) { $relations = $record->getTable()->getRelations(); - + foreach ($relations as $relation) { $relationData = $relation->toArray(); - + if ($relationData['local'] === $fieldName) { return $relationData; } - + } - + return false; } /** * purge - * + * * Purge all data for loaded models or for the passed array of Doctrine_Records * - * @param string $models + * @param string $models * @return void */ public function purge($models = null) @@ -269,11 +282,15 @@ public function purge($models = null) } foreach ($connections as $connection => $models) { - $models = Doctrine_Manager::getInstance()->getConnection($connection)->unitOfWork->buildFlushTree($models); - $models = array_reverse($models); + $conn = Doctrine_Manager::getInstance()->getConnection($connection); + $conn->beginTransaction(); + + $models = array_reverse($conn->unitOfWork->buildFlushTree($models)); foreach ($models as $model) { Doctrine_Core::getTable($model)->createQuery()->delete()->execute(); } + + $conn->commit(); } } -} \ No newline at end of file +} diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Data/Exception.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Data/Exception.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Data/Exception.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Data/Exception.php diff --git a/lib/vendor/lexpress/doctrine1/lib/Doctrine/Data/Export.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Data/Export.php new file mode 100644 index 0000000..41dedfa --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Data/Export.php @@ -0,0 +1,213 @@ +. + */ + +/** + * Doctrine_Data_Export + * + * @package Doctrine + * @subpackage Data + * @author Jonathan H. Wage + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @link www.doctrine-project.org + * @since 1.0 + * @version $Revision: 2552 $ + */ +class Doctrine_Data_Export extends Doctrine_Data +{ + /** + * constructor + * + * @param string $directory + * @return void + */ + public function __construct($directory) + { + $this->setDirectory($directory); + } + + /** + * doExport + * + * FIXME: This function has ugly hacks in it for temporarily disabling INDEXBY query parts of tables + * to export. + * + * Update from jwage: I am not sure if their is any other better solution for this. It may be the correct + * solution to disable the indexBy settings for tables when exporting data fixtures. Maybe a better idea + * would be to extract this functionality to a pair of functions to enable/disable the index by settings + * so simply turn them on and off when they need to query for the translations standalone and don't need + * it to be indexed by the lang. + * + * @return void + */ + public function doExport() + { + $models = Doctrine_Core::getLoadedModels(); + $specifiedModels = $this->getModels(); + + $data = array(); + + // for situation when the $models array is empty, but the $specifiedModels array isn't + if (empty($models)) { + $models = $specifiedModels; + } + + $models = Doctrine_Core::initializeModels($models); + + // temporarily disable indexBy query parts of selected and related tables + $originalIndexBy = array(); + foreach ($models AS $name) { + $table = Doctrine_Core::getTable($name); + if ( !is_null($indexBy = $table->getBoundQueryPart('indexBy'))) { + $originalIndexBy[$name] = $indexBy; + $table->bindQueryPart('indexBy', null); + } + } + + foreach ($models AS $name) { + if ( ! empty($specifiedModels) AND ! in_array($name, $specifiedModels)) { + continue; + } + + $results = Doctrine_Core::getTable($name)->findAll(); + + if ($results->count() > 0) { + $data[$name] = $results; + } + } + + // Restore the temporarily disabled indexBy query parts + foreach($originalIndexBy AS $name => $indexBy) { + Doctrine_Core::getTable($name)->bindQueryPart('indexBy', $indexBy); + } + + $data = $this->prepareData($data); + + return $this->dumpData($data); + } + + /** + * dumpData + * + * Dump the prepared data to the fixtures files + * + * @param string $array + * @return void + */ + public function dumpData(array $data) + { + $directory = $this->getDirectory(); + $format = $this->getFormat(); + + if ($this->exportIndividualFiles()) { + if (is_array($directory)) { + throw new Doctrine_Data_Exception('You must specify a single path to a folder in order to export individual files.'); + } else if ( ! is_dir($directory) && is_file($directory)) { + $directory = dirname($directory); + } + + foreach ($data as $className => $classData) { + if ( ! empty($classData)) { + Doctrine_Parser::dump(array($className => $classData), $format, $directory.DIRECTORY_SEPARATOR.$className.'.'.$format); + } + } + } else { + if (is_dir($directory)) { + $directory .= DIRECTORY_SEPARATOR . 'data.' . $format; + } + + if ( ! empty($data)) { + return Doctrine_Parser::dump($data, $format, $directory); + } + } + } + + /** + * prepareData + * + * Prepare the raw data to be exported with the parser + * + * @param string $data + * @return array + */ + public function prepareData($data) + { + $preparedData = array(); + + foreach ($data AS $className => $classData) { + $preparedData[$className] = array(); + $keyType = $classData->getTable()->getIdentifierType(); + foreach ($classData as $record) { + $className = get_class($record); + $recordKey = $className . '_' . implode('_', $record->identifier()); + $preparedData[$className][$recordKey] = array(); + + // skip single primary keys, we need to maintain composite primary keys + $keys = $record->getTable()->getIdentifier(); + + $recordData = $record->toArray(false); + + foreach ($recordData as $key => $value) { + if ( ! is_array($keys)) { + $keys = array($keys); + } + + if ($keyType !== Doctrine_Core::IDENTIFIER_NATURAL && count($keys) <= 1 && in_array($key, $keys)) { + continue; + } + + if (is_object($record[$key])) { + // If the field is an object serialize it + $value = serialize($record[$key]); + } + + if ($relation = $this->isRelation($record, $key)) { + if ( ! $value) { + continue; + } + $relationAlias = $relation['alias']; + $relationRecord = $record->$relationAlias; + + // If collection then get first so we have an instance of the related record + if ($relationRecord instanceof Doctrine_Collection) { + $relationRecord = $relationRecord->getFirst(); + } + + // If relation is null or does not exist then continue + if ($relationRecord instanceof Doctrine_Null || ! $relationRecord) { + continue; + } + + // Get class name for relation + $relationClassName = get_class($relationRecord); + + $relationValue = $relationClassName . '_' . $value; + + $preparedData[$className][$recordKey][$relationAlias] = $relationValue; + } else if ($record->getTable()->hasField($key)) { + $preparedData[$className][$recordKey][$key] = $value; + } + } + } + } + + return $preparedData; + } +} \ No newline at end of file diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Data/Import.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Data/Import.php similarity index 98% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Data/Import.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Data/Import.php index 649acbf..23d0f60 100644 --- a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Data/Import.php +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Data/Import.php @@ -78,12 +78,12 @@ public function doParsing() // If they specified a specific yml file if (end($e) == 'yml') { - $array = $mergeFunction($array, Doctrine_Parser::load($dir, $this->getFormat())); + $array = $mergeFunction($array, Doctrine_Parser::load($dir, $this->getFormat(), $this->getCharset())); // If they specified a directory } else if (is_dir($dir)) { $it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir), RecursiveIteratorIterator::LEAVES_ONLY); - $filesOrdered = array(); + $filesOrdered = array(); foreach ($it as $file) { $filesOrdered[] = $file; } @@ -92,7 +92,7 @@ public function doParsing() foreach ($filesOrdered as $file) { $e = explode('.', $file->getFileName()); if (in_array(end($e), $this->getFormats())) { - $array = $mergeFunction($array, Doctrine_Parser::load($file->getPathName(), $this->getFormat())); + $array = $mergeFunction($array, Doctrine_Parser::load($file->getPathName(), $this->getFormat(), $this->getCharset())); } } } @@ -138,7 +138,7 @@ protected function _buildRows($className, $data) $rel = $table->getRelation($key); $relClassName = $rel->getTable()->getOption('name'); $relRowKey = $rowKey . '_' . $relClassName; - + if ($rel->getType() == Doctrine_Relation::ONE) { $val = array($relRowKey => $value); $this->_rows[$className][$rowKey][$key] = $relRowKey; @@ -146,7 +146,7 @@ protected function _buildRows($className, $data) $val = $value; $this->_rows[$className][$rowKey][$key] = array_keys($val); } - + $this->_buildRows($relClassName, $val); } } @@ -183,7 +183,7 @@ protected function _buildNestedSetRows($className, $data) */ protected function _getImportedObject($rowKey, Doctrine_Record $record, $relationName, $referringRowKey) { - $relation = $record->getTable()->getRelation($relationName); + $relation = $record->getTable()->getRelation($relationName); $rowKey = $this->_getRowKeyPrefix($relation->getTable()) . $rowKey; if ( ! isset($this->_importedObjects[$rowKey])) { @@ -338,6 +338,7 @@ protected function _loadData(array $array) foreach ($manager as $connection) { $tree = $connection->unitOfWork->buildFlushTree(array_keys($array)); + $connection->beginTransaction(); foreach ($tree as $model) { foreach ($this->_importedObjects as $obj) { @@ -346,8 +347,8 @@ protected function _loadData(array $array) } } } + $connection->commit(); } - } /** @@ -399,4 +400,4 @@ protected function _getRowKeyPrefix(Doctrine_Table $table) { return sprintf('(%s) ', $table->getTableName()); } -} \ No newline at end of file +} diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/DataDict.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/DataDict.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/DataDict/Exception.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict/Exception.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/DataDict/Exception.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict/Exception.php diff --git a/lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict/Mssql.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict/Mssql.php new file mode 100644 index 0000000..59220b3 --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict/Mssql.php @@ -0,0 +1,273 @@ +. + */ + +/** + * @package Doctrine + * @subpackage DataDict + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @author Konsta Vesterinen + * @author Lukas Smith (PEAR MDB2 library) + * @author Frank M. Kromann (PEAR MDB2 Mssql driver) + * @author David Coallier (PEAR MDB2 Mssql driver) + * @version $Revision: 7660 $ + * @link www.doctrine-project.org + * @since 1.0 + */ +class Doctrine_DataDict_Mssql extends Doctrine_DataDict +{ + /** + * Obtain DBMS specific SQL code portion needed to declare an text type + * field to be used in statements like CREATE TABLE. + * + * @param array $field associative array with the name of the properties + * of the field being declared as array indexes. Currently, the types + * of supported field properties are as follows: + * + * length + * Integer value that determines the maximum length of the text + * field. If this argument is missing the field should be + * declared to have the longest length allowed by the DBMS. + * + * default + * Text value to be used as default for this field. + * + * notnull + * Boolean flag that indicates whether this field is constrained + * to not be set to null. + * + * @return string DBMS specific SQL code portion that should be used to + * declare the specified field. + */ + public function getNativeDeclaration($field) + { + if ( ! isset($field['type'])) { + throw new Doctrine_DataDict_Exception('Missing column type.'); + } + switch ($field['type']) { + case 'enum': + $field['length'] = isset($field['length']) && $field['length'] ? $field['length']:255; + case 'array': + case 'object': + case 'text': + case 'char': + case 'varchar': + case 'string': + case 'gzip': + $length = !empty($field['length']) + ? $field['length'] : false; + + $fixed = ((isset($field['fixed']) && $field['fixed']) || $field['type'] == 'char') ? true : false; + + return $fixed ? ($length ? 'CHAR('.$length.')' : 'CHAR('.$this->conn->varchar_max_length.')') + : (($length && $length <= $this->conn->varchar_max_length) ? 'VARCHAR('.$length.')' : 'TEXT'); + case 'clob': + if ( ! empty($field['length'])) { + $length = $field['length']; + if ($length <= 8000) { + return 'VARCHAR('.$length.')'; + } + } + return 'TEXT'; + case 'blob': + if ( ! empty($field['length'])) { + $length = $field['length']; + if ($length <= 8000) { + return "VARBINARY($length)"; + } + } + return 'IMAGE'; + case 'integer': + case 'int': + return (isset($field['unsigned']) && $field['unsigned']) ? 'BIGINT' : 'INT'; + case 'boolean': + return 'BIT'; + case 'date': + return 'CHAR(' . strlen('YYYY-MM-DD') . ')'; + case 'time': + return 'CHAR(' . strlen('HH:MM:SS') . ')'; + case 'timestamp': + return 'CHAR(' . strlen('YYYY-MM-DD HH:MM:SS') . ')'; + case 'float': + return 'FLOAT'; + case 'decimal': + $length = !empty($field['length']) ? $field['length'] : 18; + $scale = !empty($field['scale']) ? $field['scale'] : $this->conn->getAttribute(Doctrine_Core::ATTR_DECIMAL_PLACES); + return 'DECIMAL('.$length.','.$scale.')'; + } + return $field['type'] . (isset($field['length']) ? '('.$field['length'].')':null); + } + + /** + * Maps a native array description of a field to a MDB2 datatype and length + * + * @param array $field native field description + * @return array containing the various possible types, length, sign, fixed + */ + public function getPortableDeclaration($field) + { + $db_type = preg_replace('/[\d\(\)]/','', strtolower($field['type']) ); + $length = (isset($field['length']) && $field['length'] > 0) ? $field['length'] : null; + + $type = array(); + // todo: unsigned handling seems to be missing + $unsigned = $fixed = null; + + if ( ! isset($field['name'])) + $field['name'] = ''; + + switch ($db_type) { + case 'bit': + $type[0] = 'boolean'; + break; + case 'tinyint': + case 'smallint': + case 'bigint': + case 'int': + $type[0] = 'integer'; + if ($length == 1) { + $type[] = 'boolean'; + } + break; + case 'date': + $type[0] = 'date'; + break; + case 'datetime': + case 'timestamp': + case 'smalldatetime': + $type[0] = 'timestamp'; + break; + case 'float': + case 'real': + case 'numeric': + $type[0] = 'float'; + break; + case 'decimal': + case 'money': + case 'smallmoney': + $type[0] = 'decimal'; + break; + case 'text': + case 'varchar': + case 'ntext': + case 'nvarchar': + $fixed = false; + case 'char': + case 'nchar': + $type[0] = 'string'; + if ($length == '1') { + $type[] = 'boolean'; + if (preg_match('/^[is|has]/', $field['name'])) { + $type = array_reverse($type); + } + } elseif (strstr($db_type, 'text')) { + $type[] = 'clob'; + } + if ($fixed !== false) { + $fixed = true; + } + break; + case 'image': + case 'varbinary': + $type[] = 'blob'; + $length = null; + break; + case 'uniqueidentifier': + $type[] = 'string'; + $length = 36; + break; + case 'sql_variant': + case 'sysname': + case 'binary': + $type[] = 'string'; + $length = null; + break; + default: + $type[] = $field['type']; + $length = isset($field['length']) ? $field['length']:null; + } + + return array('type' => $type, + 'length' => $length, + 'unsigned' => $unsigned, + 'fixed' => $fixed); + } + + /** + * Obtain DBMS specific SQL code portion needed to declare an integer type + * field to be used in statements like CREATE TABLE. + * + * @param string $name name the field to be declared. + * @param string $field associative array with the name of the properties + * of the field being declared as array indexes. + * Currently, the types of supported field + * properties are as follows: + * + * unsigned + * Boolean flag that indicates whether the field + * should be declared as unsigned integer if + * possible. + * + * default + * Integer value to be used as default for this + * field. + * + * notnull + * Boolean flag that indicates whether this field is + * constrained to not be set to null. + * @return string DBMS specific SQL code portion that should be used to + * declare the specified field. + */ + public function getIntegerDeclaration($name, $field) + { + $default = $autoinc = ''; + if ( ! empty($field['autoincrement'])) { + $autoinc = ' identity'; + } elseif (array_key_exists('default', $field)) { + if ($field['default'] === '') { + $field['default'] = empty($field['notnull']) ? null : 0; + } + + $value = (is_null($field['default']) + ? 'NULL' + : $this->conn->quote($field['default'])); + + // Name the constraint if a name has been supplied + if (array_key_exists('defaultConstraintName', $field)) { + $default .= ' CONSTRAINT ' . $field['defaultConstraintName']; + } + + $default .= ' DEFAULT ' . $value; + } + + + $notnull = (isset($field['notnull']) && $field['notnull']) ? ' NOT NULL' : ' NULL'; + //$unsigned = (isset($field['unsigned']) && $field['unsigned']) ? ' UNSIGNED' : ''; + // MSSQL does not support the UNSIGNED keyword + $unsigned = ''; + $comment = (isset($field['comment']) && $field['comment']) + ? " COMMENT " . $this->conn->quote($field['comment'], 'text') : ''; + + $name = $this->conn->quoteIdentifier($name, true); + + return $name . ' ' . $this->getNativeDeclaration($field) . $unsigned + . $default . $notnull . $autoinc . $comment; + } +} \ No newline at end of file diff --git a/lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict/Mysql.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict/Mysql.php new file mode 100644 index 0000000..3bb9d26 --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict/Mysql.php @@ -0,0 +1,514 @@ +. + */ + +/** + * @package Doctrine + * @subpackage DataDict + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @author Konsta Vesterinen + * @author Lukas Smith (PEAR MDB2 library) + * @version $Revision: 7635 $ + * @link www.doctrine-project.org + * @since 1.0 + */ +class Doctrine_DataDict_Mysql extends Doctrine_DataDict +{ + protected $keywords = array( + 'ADD', 'ALL', 'ALTER', + 'ANALYZE', 'AND', 'AS', + 'ASC', 'ASENSITIVE', 'BEFORE', + 'BETWEEN', 'BIGINT', 'BINARY', + 'BLOB', 'BOTH', 'BY', 'BIT', + 'CALL', 'CASCADE', 'CASE', + 'CHANGE', 'CHAR', 'CHARACTER', + 'CHECK', 'COLLATE', 'COLUMN', + 'CONDITION', 'CONNECTION', 'CONSTRAINT', + 'CONTINUE', 'CONVERT', 'CREATE', + 'CROSS', 'CURRENT_DATE', 'CURRENT_TIME', + 'CURRENT_TIMESTAMP', 'CURRENT_USER', 'CURSOR', + 'DATABASE', 'DATABASES', 'DAY_HOUR', + 'DAY_MICROSECOND', 'DAY_MINUTE', 'DAY_SECOND', + 'DEC', 'DECIMAL', 'DECLARE', + 'DEFAULT', 'DELAYED', 'DELETE', + 'DESC', 'DESCRIBE', 'DETERMINISTIC', + 'DISTINCT', 'DISTINCTROW', 'DIV', + 'DOUBLE', 'DROP', 'DUAL', + 'EACH', 'ELSE', 'ELSEIF', + 'ENCLOSED', 'ESCAPED', 'EXISTS', + 'EXIT', 'EXPLAIN', 'FALSE', + 'FETCH', 'FLOAT', 'FLOAT4', + 'FLOAT8', 'FOR', 'FORCE', + 'FOREIGN', 'FROM', 'FULLTEXT', + 'GRANT', 'GROUP', 'HAVING', + 'HIGH_PRIORITY', 'HOUR_MICROSECOND', 'HOUR_MINUTE', + 'HOUR_SECOND', 'IF', 'IGNORE', + 'IN', 'INDEX', 'INFILE', + 'INNER', 'INOUT', 'INSENSITIVE', + 'INSERT', 'INT', 'INT1', + 'INT2', 'INT3', 'INT4', + 'INT8', 'INTEGER', 'INTERVAL', + 'INTO', 'IS', 'ITERATE', + 'JOIN', 'KEY', 'KEYS', + 'KILL', 'LEADING', 'LEAVE', + 'LEFT', 'LIKE', 'LIMIT', + 'LINES', 'LOAD', 'LOCALTIME', + 'LOCALTIMESTAMP', 'LOCK', 'LONG', + 'LONGBLOB', 'LONGTEXT', 'LOOP', + 'LOW_PRIORITY', 'MATCH', 'MEDIUMBLOB', + 'MEDIUMINT', 'MEDIUMTEXT', 'MIDDLEINT', + 'MINUTE_MICROSECOND', 'MINUTE_SECOND', 'MOD', + 'MODIFIES', 'NATURAL', 'NOT', + 'NO_WRITE_TO_BINLOG', 'NULL', 'NUMERIC', + 'ON', 'OPTIMIZE', 'OPTION', + 'OPTIONALLY', 'OR', 'ORDER', + 'OUT', 'OUTER', 'OUTFILE', + 'PRECISION', 'PRIMARY', 'PROCEDURE', + 'PURGE', 'RAID0', 'READ', + 'READS', 'REAL', 'REFERENCES', + 'REGEXP', 'RELEASE', 'RENAME', + 'REPEAT', 'REPLACE', 'REQUIRE', + 'RESTRICT', 'RETURN', 'REVOKE', + 'RIGHT', 'RLIKE', 'SCHEMA', + 'SCHEMAS', 'SECOND_MICROSECOND', 'SELECT', + 'SENSITIVE', 'SEPARATOR', 'SET', + 'SHOW', 'SMALLINT', 'SONAME', + 'SPATIAL', 'SPECIFIC', 'SQL', + 'SQLEXCEPTION', 'SQLSTATE', 'SQLWARNING', + 'SQL_BIG_RESULT', 'SQL_CALC_FOUND_ROWS', 'SQL_SMALL_RESULT', + 'SSL', 'STARTING', 'STRAIGHT_JOIN', + 'TABLE', 'TERMINATED', 'THEN', + 'TINYBLOB', 'TINYINT', 'TINYTEXT', + 'TO', 'TRAILING', 'TRIGGER', + 'TRUE', 'UNDO', 'UNION', + 'UNIQUE', 'UNLOCK', 'UNSIGNED', + 'UPDATE', 'USAGE', 'USE', + 'USING', 'UTC_DATE', 'UTC_TIME', + 'UTC_TIMESTAMP', 'VALUES', 'VARBINARY', + 'VARCHAR', 'VARCHARACTER', 'VARYING', + 'WHEN', 'WHERE', 'WHILE', + 'WITH', 'WRITE', 'X509', + 'XOR', 'YEAR_MONTH', 'ZEROFILL' + ); + + /** + * Obtain DBMS specific SQL code portion needed to declare an text type + * field to be used in statements like CREATE TABLE. + * + * @param array $field associative array with the name of the properties + * of the field being declared as array indexes. Currently, the types + * of supported field properties are as follows: + * + * length + * Integer value that determines the maximum length of the text + * field. If this argument is missing the field should be + * declared to have the longest length allowed by the DBMS. + * + * default + * Text value to be used as default for this field. + * + * notnull + * Boolean flag that indicates whether this field is constrained + * to not be set to null. + * + * @return string DBMS specific SQL code portion that should be used to + * declare the specified field. + */ + public function getNativeDeclaration($field) + { + if ( ! isset($field['type'])) { + throw new Doctrine_DataDict_Exception('Missing column type.'); + } + + switch ($field['type']) { + case 'char': + $length = ( ! empty($field['length'])) ? $field['length'] : false; + + return $length ? 'CHAR('.$length.')' : 'CHAR(255)'; + case 'enum': + if ($this->conn->getAttribute(Doctrine_Core::ATTR_USE_NATIVE_ENUM)) { + $values = array(); + foreach ($field['values'] as $value) { + $values[] = $this->conn->quote($value, 'varchar'); + } + return 'ENUM('.implode(', ', $values).')'; + } else { + $field['length'] = isset($field['length']) && $field['length'] ? $field['length']:255; + } + case 'set': + if ($this->conn->getAttribute(Doctrine_Core::ATTR_USE_NATIVE_SET)) { + $values = array(); + foreach ($field['values'] as $value) { + $values[] = $this->conn->quote($value, 'varchar'); + } + return 'SET('.implode(', ', $values).')'; + } else { + $field['length'] = isset($field['length']) && $field['length'] ? $field['length']:255; + } + case 'varchar': + case 'string': + case 'gzip': + if ( ! isset($field['length'])) { + if (array_key_exists('default', $field)) { + $field['length'] = $this->conn->varchar_max_length; + } else { + $field['length'] = false; + } + } + + $length = ($field['length'] <= $this->conn->varchar_max_length) ? $field['length'] : false; + $fixed = (isset($field['fixed'])) ? $field['fixed'] : false; + + return $fixed ? ($length ? 'CHAR(' . $length . ')' : 'CHAR(255)') + : ($length ? 'VARCHAR(' . $length . ')' : 'TEXT'); + case 'array': + case 'object': + case 'clob': + if ( ! empty($field['length'])) { + $length = $field['length']; + if ($length <= 255) { + return 'TINYTEXT'; + } elseif ($length <= 65532) { + return 'TEXT'; + } elseif ($length <= 16777215) { + return 'MEDIUMTEXT'; + } + } + return 'LONGTEXT'; + case 'blob': + if ( ! empty($field['length'])) { + $length = $field['length']; + if ($length <= 255) { + return 'TINYBLOB'; + } elseif ($length <= 65532) { + return 'BLOB'; + } elseif ($length <= 16777215) { + return 'MEDIUMBLOB'; + } + } + return 'LONGBLOB'; + case 'integer': + case 'int': + if ( ! empty($field['length'])) { + $length = $field['length']; + if ($length <= 1) { + return 'TINYINT'; + } elseif ($length == 2) { + return 'SMALLINT'; + } elseif ($length == 3) { + return 'MEDIUMINT'; + } elseif ($length == 4) { + return 'INT'; + } elseif ($length > 4) { + return 'BIGINT'; + } + } + return 'INT'; + case 'boolean': + return 'TINYINT(1)'; + case 'date': + return 'DATE'; + case 'time': + return 'TIME'; + case 'timestamp': + return 'DATETIME'; + case 'float': + $length = !empty($field['length']) ? $field['length'] : 18; + $scale = !empty($field['scale']) ? $field['scale'] : $this->conn->getAttribute(Doctrine_Core::ATTR_DECIMAL_PLACES); + return 'FLOAT('.$length.', '.$scale.')'; + case 'double': + $length = !empty($field['length']) ? $field['length'] : 18; + $scale = !empty($field['scale']) ? $field['scale'] : $this->conn->getAttribute(Doctrine_Core::ATTR_DECIMAL_PLACES); + return 'DOUBLE('.$length.', '.$scale.')'; + case 'decimal': + $length = !empty($field['length']) ? $field['length'] : 18; + $scale = !empty($field['scale']) ? $field['scale'] : $this->conn->getAttribute(Doctrine_Core::ATTR_DECIMAL_PLACES); + return 'DECIMAL('.$length.', '.$scale.')'; + case 'bit': + return 'BIT'; + } + return $field['type'] . (isset($field['length']) ? '('.$field['length'].')':null); + } + + /** + * Maps a native array description of a field to a MDB2 datatype and length + * + * @param array $field native field description + * @return array containing the various possible types, length, sign, fixed + */ + public function getPortableDeclaration(array $field) + { + $dbType = strtolower($field['type']); + $dbType = strtok($dbType, '(), '); + if ($dbType == 'national') { + $dbType = strtok('(), '); + } + if (isset($field['length'])) { + $length = $field['length']; + $decimal = ''; + } else { + $length = strtok('(), '); + $decimal = strtok('(), '); + if ( ! $decimal ) { + $decimal = null; + } + } + $type = array(); + $unsigned = $fixed = null; + + if ( ! isset($field['name'])) { + $field['name'] = ''; + } + + $values = null; + $scale = null; + + switch ($dbType) { + case 'tinyint': + $type[] = 'integer'; + $type[] = 'boolean'; + if (preg_match('/^(is|has)/', $field['name'])) { + $type = array_reverse($type); + } + $unsigned = preg_match('/ unsigned/i', $field['type']); + $length = 1; + break; + case 'smallint': + $type[] = 'integer'; + $unsigned = preg_match('/ unsigned/i', $field['type']); + $length = 2; + break; + case 'mediumint': + $type[] = 'integer'; + $unsigned = preg_match('/ unsigned/i', $field['type']); + $length = 3; + break; + case 'int': + case 'integer': + $type[] = 'integer'; + $unsigned = preg_match('/ unsigned/i', $field['type']); + $length = 4; + break; + case 'bigint': + $type[] = 'integer'; + $unsigned = preg_match('/ unsigned/i', $field['type']); + $length = 8; + break; + case 'tinytext': + case 'mediumtext': + case 'longtext': + case 'text': + case 'text': + case 'varchar': + $fixed = false; + case 'string': + case 'char': + $type[] = 'string'; + if ($length == '1') { + $type[] = 'boolean'; + if (preg_match('/^(is|has)/', $field['name'])) { + $type = array_reverse($type); + } + } elseif (strstr($dbType, 'text')) { + $type[] = 'clob'; + if ($decimal == 'binary') { + $type[] = 'blob'; + } + } + if ($fixed !== false) { + $fixed = true; + } + break; + case 'enum': + $type[] = 'enum'; + preg_match_all('/\'((?:\'\'|[^\'])*)\'/', $field['type'], $matches); + $length = 0; + $fixed = false; + if (is_array($matches)) { + foreach ($matches[1] as &$value) { + $value = str_replace('\'\'', '\'', $value); + $length = max($length, strlen($value)); + } + if ($length == '1' && count($matches[1]) == 2) { + $type[] = 'boolean'; + if (preg_match('/^(is|has)/', $field['name'])) { + $type = array_reverse($type); + } + } + + $values = $matches[1]; + } + $type[] = 'integer'; + break; + case 'set': + $fixed = false; + $type[] = 'text'; + $type[] = 'integer'; + break; + case 'date': + $type[] = 'date'; + $length = null; + break; + case 'datetime': + case 'timestamp': + $type[] = 'timestamp'; + $length = null; + break; + case 'time': + $type[] = 'time'; + $length = null; + break; + case 'float': + case 'double': + case 'real': + $type[] = 'float'; + $unsigned = preg_match('/ unsigned/i', $field['type']); + break; + case 'unknown': + case 'decimal': + if ($decimal !== null) { + $scale = $decimal; + } + case 'numeric': + $type[] = 'decimal'; + $unsigned = preg_match('/ unsigned/i', $field['type']); + break; + case 'tinyblob': + case 'mediumblob': + case 'longblob': + case 'blob': + case 'binary': + case 'varbinary': + $type[] = 'blob'; + $length = null; + break; + case 'year': + $type[] = 'integer'; + $type[] = 'date'; + $length = null; + break; + case 'bit': + $type[] = 'bit'; + break; + case 'geometry': + case 'geometrycollection': + case 'point': + case 'multipoint': + case 'linestring': + case 'multilinestring': + case 'polygon': + case 'multipolygon': + $type[] = 'blob'; + $length = null; + break; + default: + $type[] = $field['type']; + $length = isset($field['length']) ? $field['length']:null; + } + + $length = ((int) $length == 0) ? null : (int) $length; + $def = array('type' => $type, 'length' => $length, 'unsigned' => $unsigned, 'fixed' => $fixed); + if ($values !== null) { + $def['values'] = $values; + } + if ($scale !== null) { + $def['scale'] = $scale; + } + return $def; + } + + /** + * Obtain DBMS specific SQL code portion needed to set the CHARACTER SET + * of a field declaration to be used in statements like CREATE TABLE. + * + * @param string $charset name of the charset + * @return string DBMS specific SQL code portion needed to set the CHARACTER SET + * of a field declaration. + */ + public function getCharsetFieldDeclaration($charset) + { + return 'CHARACTER SET ' . $charset; + } + + /** + * Obtain DBMS specific SQL code portion needed to set the COLLATION + * of a field declaration to be used in statements like CREATE TABLE. + * + * @param string $collation name of the collation + * @return string DBMS specific SQL code portion needed to set the COLLATION + * of a field declaration. + */ + public function getCollationFieldDeclaration($collation) + { + return 'COLLATE ' . $collation; + } + + /** + * Obtain DBMS specific SQL code portion needed to declare an integer type + * field to be used in statements like CREATE TABLE. + * + * @param string $name name the field to be declared. + * @param string $field associative array with the name of the properties + * of the field being declared as array indexes. + * Currently, the types of supported field + * properties are as follows: + * + * unsigned + * Boolean flag that indicates whether the field + * should be declared as unsigned integer if + * possible. + * + * default + * Integer value to be used as default for this + * field. + * + * notnull + * Boolean flag that indicates whether this field is + * constrained to not be set to null. + * @return string DBMS specific SQL code portion that should be used to + * declare the specified field. + */ + public function getIntegerDeclaration($name, $field) + { + $unique = (isset($field['unique']) && $field['unique']) ? ' UNIQUE' : ''; + $default = $autoinc = ''; + if ( ! empty($field['autoincrement'])) { + $autoinc = ' AUTO_INCREMENT'; + } elseif (array_key_exists('default', $field)) { + if ($field['default'] === '') { + $field['default'] = empty($field['notnull']) ? null : 0; + } + + $default = ' DEFAULT ' . (is_null($field['default']) + ? 'NULL' + : $this->conn->quote($field['default'])); + } + + $notnull = (isset($field['notnull']) && $field['notnull']) ? ' NOT NULL' : ''; + $unsigned = (isset($field['unsigned']) && $field['unsigned']) ? ' UNSIGNED' : ''; + $comment = (isset($field['comment']) && $field['comment']) + ? " COMMENT " . $this->conn->quote($field['comment'], 'text') : ''; + + $name = $this->conn->quoteIdentifier($name, true); + + return $name . ' ' . $this->getNativeDeclaration($field) . $unsigned + . $default . $unique . $notnull . $autoinc . $comment; + } +} \ No newline at end of file diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/DataDict/Oracle.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict/Oracle.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/DataDict/Oracle.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict/Oracle.php diff --git a/lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict/Pgsql.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict/Pgsql.php new file mode 100644 index 0000000..da1cc9e --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict/Pgsql.php @@ -0,0 +1,686 @@ +. + */ + +/** + * @package Doctrine + * @subpackage DataDict + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @author Konsta Vesterinen + * @author Paul Cooper + * @author Lukas Smith (PEAR MDB2 library) + * @version $Revision: 7641 $ + * @link www.doctrine-project.org + * @since 1.0 + */ +class Doctrine_DataDict_Pgsql extends Doctrine_DataDict +{ + /** + * @param array $reservedKeyWords an array of reserved keywords by pgsql + */ + protected static $reservedKeyWords = array( + 'abort', + 'absolute', + 'access', + 'action', + 'add', + 'after', + 'aggregate', + 'all', + 'alter', + 'analyse', + 'analyze', + 'and', + 'any', + 'as', + 'asc', + 'assertion', + 'assignment', + 'at', + 'authorization', + 'backward', + 'before', + 'begin', + 'between', + 'bigint', + 'binary', + 'bit', + 'boolean', + 'both', + 'by', + 'cache', + 'called', + 'cascade', + 'case', + 'cast', + 'chain', + 'char', + 'character', + 'characteristics', + 'check', + 'checkpoint', + 'class', + 'close', + 'cluster', + 'coalesce', + 'collate', + 'column', + 'comment', + 'commit', + 'committed', + 'constraint', + 'constraints', + 'conversion', + 'convert', + 'copy', + 'create', + 'createdb', + 'createuser', + 'cross', + 'current_date', + 'current_time', + 'current_timestamp', + 'current_user', + 'cursor', + 'cycle', + 'database', + 'day', + 'deallocate', + 'dec', + 'decimal', + 'declare', + 'default', + 'deferrable', + 'deferred', + 'definer', + 'delete', + 'delimiter', + 'delimiters', + 'desc', + 'distinct', + 'do', + 'domain', + 'double', + 'drop', + 'each', + 'else', + 'encoding', + 'encrypted', + 'end', + 'escape', + 'except', + 'exclusive', + 'execute', + 'exists', + 'explain', + 'external', + 'extract', + 'false', + 'fetch', + 'float', + 'for', + 'force', + 'foreign', + 'forward', + 'freeze', + 'from', + 'full', + 'function', + 'get', + 'global', + 'grant', + 'group', + 'handler', + 'having', + 'hour', + 'ilike', + 'immediate', + 'immutable', + 'implicit', + 'in', + 'increment', + 'index', + 'inherits', + 'initially', + 'inner', + 'inout', + 'input', + 'insensitive', + 'insert', + 'instead', + 'int', + 'integer', + 'intersect', + 'interval', + 'into', + 'invoker', + 'is', + 'isnull', + 'isolation', + 'join', + 'key', + 'lancompiler', + 'language', + 'leading', + 'left', + 'level', + 'like', + 'limit', + 'listen', + 'load', + 'local', + 'localtime', + 'localtimestamp', + 'location', + 'lock', + 'match', + 'maxvalue', + 'minute', + 'minvalue', + 'mode', + 'month', + 'move', + 'names', + 'national', + 'natural', + 'nchar', + 'new', + 'next', + 'no', + 'nocreatedb', + 'nocreateuser', + 'none', + 'not', + 'nothing', + 'notify', + 'notnull', + 'null', + 'nullif', + 'numeric', + 'of', + 'off', + 'offset', + 'oids', + 'old', + 'on', + 'only', + 'operator', + 'option', + 'or', + 'order', + 'out', + 'outer', + 'overlaps', + 'overlay', + 'owner', + 'partial', + 'password', + 'path', + 'pendant', + 'placing', + 'position', + 'precision', + 'prepare', + 'primary', + 'prior', + 'privileges', + 'procedural', + 'procedure', + 'read', + 'real', + 'recheck', + 'references', + 'reindex', + 'relative', + 'rename', + 'replace', + 'reset', + 'restrict', + 'returns', + 'revoke', + 'right', + 'rollback', + 'row', + 'rule', + 'schema', + 'scroll', + 'second', + 'security', + 'select', + 'sequence', + 'serializable', + 'session', + 'session_user', + 'set', + 'setof', + 'share', + 'show', + 'similar', + 'simple', + 'smallint', + 'some', + 'stable', + 'start', + 'statement', + 'statistics', + 'stdin', + 'stdout', + 'storage', + 'strict', + 'substring', + 'sysid', + 'table', + 'temp', + 'template', + 'temporary', + 'then', + 'time', + 'timestamp', + 'to', + 'toast', + 'trailing', + 'transaction', + 'treat', + 'trigger', + 'trim', + 'true', + 'truncate', + 'trusted', + 'type', + 'unencrypted', + 'union', + 'unique', + 'unknown', + 'unlisten', + 'until', + 'update', + 'usage', + 'user', + 'using', + 'vacuum', + 'valid', + 'validator', + 'values', + 'varchar', + 'varying', + 'verbose', + 'version', + 'view', + 'volatile', + 'when', + 'where', + 'with', + 'without', + 'work', + 'write', + 'year', + 'zone' + ); + + /** + * Obtain DBMS specific SQL code portion needed to declare an text type + * field to be used in statements like CREATE TABLE. + * + * @param array $field associative array with the name of the properties + * of the field being declared as array indexes. Currently, the types + * of supported field properties are as follows: + * + * length + * Integer value that determines the maximum length of the text + * field. If this argument is missing the field should be + * declared to have the longest length allowed by the DBMS. + * + * default + * Text value to be used as default for this field. + * + * notnull + * Boolean flag that indicates whether this field is constrained + * to not be set to null. + * + * @return string DBMS specific SQL code portion that should be used to + * declare the specified field. + */ + public function getNativeDeclaration(array $field) + { + if ( ! isset($field['type'])) { + throw new Doctrine_DataDict_Exception('Missing column type.'); + } + + // Postgres enum type by name containing enum + if (strpos($field['type'], 'enum') !== false){ + $field['type'] = 'enum'; + } + + switch ($field['type']) { + case 'enum': + $field['length'] = isset($field['length']) && $field['length'] ? $field['length']:255; + case 'char': + case 'string': + case 'array': + case 'object': + case 'varchar': + case 'gzip': + // TODO: what is the maximum VARCHAR length in pgsql ? + $length = (isset($field['length']) && $field['length'] && $field['length'] < 10000) ? $field['length'] : null; + + $fixed = ((isset($field['fixed']) && $field['fixed']) || $field['type'] == 'char') ? true : false; + + return $fixed ? ($length ? 'CHAR(' . $length . ')' : 'CHAR('.$this->conn->varchar_max_length.')') + : ($length ? 'VARCHAR(' .$length . ')' : 'TEXT'); + + case 'clob': + return 'TEXT'; + case 'blob': + return 'BYTEA'; + case 'integer': + case 'int': + if ( ! empty($field['autoincrement'])) { + if ( ! empty($field['length'])) { + $length = $field['length']; + if ($length > 4) { + return 'BIGSERIAL'; + } + } + return 'SERIAL'; + } + if ( ! empty($field['length'])) { + $length = $field['length']; + if ($length <= 2) { + return 'SMALLINT'; + } elseif ($length == 3 || $length == 4) { + return 'INT'; + } elseif ($length > 4) { + return 'BIGINT'; + } + } + return 'INT'; + case 'inet': + return 'INET'; + case 'bit': + case 'varbit': + return 'VARBIT'; + case 'boolean': + return 'BOOLEAN'; + case 'date': + return 'DATE'; + case 'time': + return 'TIME'; + case 'timestamp': + return 'TIMESTAMP'; + case 'float': + case 'double': + return 'FLOAT'; + case 'decimal': + $length = !empty($field['length']) ? $field['length'] : 18; + $scale = !empty($field['scale']) ? $field['scale'] : $this->conn->getAttribute(Doctrine_Core::ATTR_DECIMAL_PLACES); + return 'NUMERIC('.$length.','.$scale.')'; + } + return $field['type'] . (isset($field['length']) ? '('.$field['length'].')':null); + } + + /** + * Maps a native array description of a field to a portable Doctrine datatype and length + * + * @param array $field native field description + * + * @return array containing the various possible types, length, sign, fixed + */ + public function getPortableDeclaration(array $field) + { + $length = (isset($field['length'])) ? $field['length'] : null; + if ($length == '-1' && isset($field['atttypmod'])) { + $length = $field['atttypmod'] - 4; + } + if ((int)$length <= 0) { + $length = null; + } + $type = array(); + $unsigned = $fixed = null; + + if ( ! isset($field['name'])) { + $field['name'] = ''; + } + + $dbType = strtolower($field['type']); + + // Default from field for enum support + $default = isset($field['default']) ? $field['default'] : null; + $enumName = null; + if (strpos($dbType, 'enum') !== false){ + $enumName = $dbType; + $dbType = 'enum'; + } + + switch ($dbType) { + case 'inet': + $type[] = 'inet'; + break; + case 'bit': + case 'varbit': + $type[] = 'bit'; + break; + case 'smallint': + case 'int2': + $type[] = 'integer'; + $unsigned = false; + $length = 2; + if ($length == '2') { + $type[] = 'boolean'; + if (preg_match('/^(is|has)/', $field['name'])) { + $type = array_reverse($type); + } + } + break; + case 'int': + case 'int4': + case 'integer': + case 'serial': + case 'serial4': + $type[] = 'integer'; + $unsigned = false; + $length = 4; + break; + case 'bigint': + case 'int8': + case 'bigserial': + case 'serial8': + $type[] = 'integer'; + $unsigned = false; + $length = 8; + break; + case 'bool': + case 'boolean': + $type[] = 'boolean'; + $length = 1; + break; + case 'text': + case 'varchar': + case 'interval': + case '_varchar': + $fixed = false; + case 'tsvector': + case 'unknown': + case 'char': + case 'character': + case 'bpchar': + $type[] = 'string'; + if ($length == '1') { + $type[] = 'boolean'; + if (preg_match('/^(is|has)/', $field['name'])) { + $type = array_reverse($type); + } + } elseif (strstr($dbType, 'text')) { + $type[] = 'clob'; + } + if ($fixed !== false) { + $fixed = true; + } + break; + case 'enum': + $type[] = 'enum'; + $length = $length ? $length :255; + if($default) { + $default = preg_replace('/\'(\w+)\'.*/', '${1}', $default); + } + break; + case 'date': + $type[] = 'date'; + $length = null; + break; + case 'datetime': + case 'timestamp': + case 'timetz': + case 'timestamptz': + $type[] = 'timestamp'; + $length = null; + break; + case 'time': + $type[] = 'time'; + $length = null; + break; + case 'float': + case 'float4': + case 'float8': + case 'double': + case 'double precision': + case 'real': + $type[] = 'float'; + break; + case 'decimal': + case 'money': + case 'numeric': + $type[] = 'decimal'; + break; + case 'tinyblob': + case 'mediumblob': + case 'longblob': + case 'blob': + case 'bytea': + case 'geometry': + case 'geometrycollection': + case 'point': + case 'multipoint': + case 'linestring': + case 'multilinestring': + case 'polygon': + case 'multipolygon': + $type[] = 'blob'; + $length = null; + break; + case 'oid': + $type[] = 'blob'; + $type[] = 'clob'; + $length = null; + break; + case 'year': + $type[] = 'integer'; + $type[] = 'date'; + $length = null; + break; + default: + $type[] = $field['type']; + $length = isset($field['length']) ? $field['length']:null; + } + + $ret = array('type' => $type, + 'length' => $length, + 'unsigned' => $unsigned, + 'fixed' => $fixed); + + // If this is postgresql enum type we will have non-null values here + if ($default !== null) { + $ret['default'] = $default; + } + if ($enumName !== null) { + $ret['enumName'] = $enumName; + } + return $ret; + } + + /** + * Obtain DBMS specific SQL code portion needed to declare an integer type + * field to be used in statements like CREATE TABLE. + * + * @param string $name name the field to be declared. + * @param array $field associative array with the name of the properties + * of the field being declared as array indexes. Currently, the types + * of supported field properties are as follows: + * + * unsigned + * Boolean flag that indicates whether the field should be + * declared as unsigned integer if possible. + * + * default + * Integer value to be used as default for this field. + * + * notnull + * Boolean flag that indicates whether this field is constrained + * to not be set to null. + * @return string DBMS specific SQL code portion that should be used to + * declare the specified field. + */ + public function getIntegerDeclaration($name, $field) + { + /** + if ( ! empty($field['unsigned'])) { + $this->conn->warnings[] = "unsigned integer field \"$name\" is being declared as signed integer"; + } + */ + + if ( ! empty($field['autoincrement'])) { + $name = $this->conn->quoteIdentifier($name, true); + return $name . ' ' . $this->getNativeDeclaration($field); + } + + $default = ''; + if (array_key_exists('default', $field)) { + if ($field['default'] === '') { + $field['default'] = empty($field['notnull']) ? null : 0; + } + + $default = ' DEFAULT ' . (is_null($field['default']) + ? 'NULL' + : $this->conn->quote($field['default'], $field['type'])); + } + /** + TODO: is this needed ? + elseif (empty($field['notnull'])) { + $default = ' DEFAULT NULL'; + } + */ + + $notnull = empty($field['notnull']) ? '' : ' NOT NULL'; + $name = $this->conn->quoteIdentifier($name, true); + return $name . ' ' . $this->getNativeDeclaration($field) . $default . $notnull; + } + + /** + * parseBoolean + * parses a literal boolean value and returns + * proper sql equivalent + * + * @param string $value boolean value to be parsed + * @return string parsed boolean value + */ + public function parseBoolean($value) + { + return $value; + } +} diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/DataDict/Sqlite.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict/Sqlite.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/DataDict/Sqlite.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/DataDict/Sqlite.php diff --git a/lib/vendor/lexpress/doctrine1/lib/Doctrine/Event.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Event.php new file mode 100644 index 0000000..408d8ba --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Event.php @@ -0,0 +1,375 @@ +. + */ + +/** + * Doctrine_Event + * + * @author Konsta Vesterinen + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @package Doctrine + * @subpackage Event + * @link www.doctrine-project.org + * @since 1.0 + * @version $Revision$ + */ +class Doctrine_Event +{ + /** + * CONNECTION EVENT CODES + */ + const CONN_QUERY = 1; + const CONN_EXEC = 2; + const CONN_PREPARE = 3; + const CONN_CONNECT = 4; + const CONN_CLOSE = 5; + const CONN_ERROR = 6; + + const STMT_EXECUTE = 10; + const STMT_FETCH = 11; + const STMT_FETCHALL = 12; + + const TX_BEGIN = 31; + const TX_COMMIT = 32; + const TX_ROLLBACK = 33; + const SAVEPOINT_CREATE = 34; + const SAVEPOINT_ROLLBACK = 35; + const SAVEPOINT_COMMIT = 36; + + const HYDRATE = 40; + + /* + * RECORD EVENT CODES + */ + const RECORD_DELETE = 21; + const RECORD_SAVE = 22; + const RECORD_UPDATE = 23; + const RECORD_INSERT = 24; + const RECORD_SERIALIZE = 25; + const RECORD_UNSERIALIZE = 26; + const RECORD_DQL_DELETE = 27; + const RECORD_DQL_SELECT = 28; + const RECORD_DQL_UPDATE = 29; + const RECORD_VALIDATE = 30; + + /** + * @var mixed $_nextSequence the sequence of the next event that will be created + */ + static protected $_nextSequence = 0; + + /** + * @var mixed $_sequence the sequence of this event + */ + protected $_sequence; + + /** + * @var mixed $_invoker the handler which invoked this event + */ + protected $_invoker; + + /** + * @var string $_query the sql query associated with this event (if any) + */ + protected $_query; + + /** + * @var string $_params the parameters associated with the query (if any) + */ + protected $_params; + + /** + * @see Doctrine_Event constants + * @var integer $_code the event code + */ + protected $_code; + + /** + * @var integer $_startedMicrotime the time point in which this event was started + */ + protected $_startedMicrotime; + + /** + * @var integer $_endedMicrotime the time point in which this event was ended + */ + protected $_endedMicrotime; + + /** + * @var array $_options an array of options + */ + protected $_options = array(); + + /** + * constructor + * + * @param Doctrine_Connection|Doctrine_Connection_Statement| + Doctrine_Connection_UnitOfWork|Doctrine_Transaction $invoker the handler which invoked this event + * @param integer $code the event code + * @param string $query the sql query associated with this event (if any) + */ + public function __construct($invoker, $code, $query = null, $params = array()) + { + $this->_sequence = self::$_nextSequence++; + $this->_invoker = $invoker; + $this->_code = $code; + $this->_query = $query; + $this->_params = $params; + } + + /** + * getQuery + * + * @return Doctrine_Query returns the query associated with this event (if any) + */ + public function getQuery() + { + return $this->_query; + } + + /** + * getName + * returns the name of this event + * + * @return string the name of this event + */ + public function getName() + { + switch ($this->_code) { + case self::CONN_QUERY: + return 'query'; + case self::CONN_EXEC: + return 'exec'; + case self::CONN_PREPARE: + return 'prepare'; + case self::CONN_CONNECT: + return 'connect'; + case self::CONN_CLOSE: + return 'close'; + case self::CONN_ERROR: + return 'error'; + + case self::STMT_EXECUTE: + return 'execute'; + case self::STMT_FETCH: + return 'fetch'; + case self::STMT_FETCHALL: + return 'fetch all'; + + case self::TX_BEGIN: + return 'begin'; + case self::TX_COMMIT: + return 'commit'; + case self::TX_ROLLBACK: + return 'rollback'; + + case self::SAVEPOINT_CREATE: + return 'create savepoint'; + case self::SAVEPOINT_ROLLBACK: + return 'rollback savepoint'; + case self::SAVEPOINT_COMMIT: + return 'commit savepoint'; + + case self::RECORD_DELETE: + return 'delete record'; + case self::RECORD_SAVE: + return 'save record'; + case self::RECORD_UPDATE: + return 'update record'; + case self::RECORD_INSERT: + return 'insert record'; + case self::RECORD_SERIALIZE: + return 'serialize record'; + case self::RECORD_UNSERIALIZE: + return 'unserialize record'; + case self::RECORD_DQL_SELECT: + return 'select records'; + case self::RECORD_DQL_DELETE: + return 'delete records'; + case self::RECORD_DQL_UPDATE: + return 'update records'; + case self::RECORD_VALIDATE: + return 'validate record'; + } + } + + /** + * getCode + * + * @return integer returns the code associated with this event + */ + public function getCode() + { + return $this->_code; + } + + /** + * getOption + * returns the value of an option + * + * @param string $option the name of the option + * @return mixed + */ + public function __get($option) + { + if ( ! isset($this->_options[$option])) { + return null; + } + + return $this->_options[$option]; + } + + /** + * skipOperation + * skips the next operation + * an alias for __set('skipOperation', true) + * + * @return Doctrine_Event this object + */ + public function skipOperation() + { + $this->_options['skipOperation'] = true; + + return $this; + } + + /** + * setOption + * sets the value of an option + * + * @param string $option the name of the option + * @param mixed $value the value of the given option + * @return Doctrine_Event this object + */ + public function __set($option, $value) + { + $this->_options[$option] = $value; + + return $this; + } + + /** + * setOption + * sets the value of an option by reference + * + * @param string $option the name of the option + * @param mixed $value the value of the given option + * @return Doctrine_Event this object + */ + public function set($option, &$value) + { + $this->_options[$option] =& $value; + + return $this; + } + + /** + * start + * starts the internal timer of this event + * + * @return Doctrine_Event this object + */ + public function start() + { + $this->_startedMicrotime = microtime(true); + } + + /** + * hasEnded + * whether or not this event has ended + * + * @return boolean + */ + public function hasEnded() + { + return ($this->_endedMicrotime != null); + } + + /** + * end + * ends the internal timer of this event + * + * @return Doctrine_Event this object + */ + public function end() + { + $this->_endedMicrotime = microtime(true); + + return $this; + } + + /** + * getSequence + * returns the sequence of this event + * + * @return integer + */ + public function getSequence() + { + return $this->_sequence; + } + + /** + * getInvoker + * returns the handler that invoked this event + * + * @return Doctrine_Record|Doctrine_Connection|Doctrine_Connection_Statement| + * Doctrine_Connection_UnitOfWork|Doctrine_Transaction the handler that invoked this event + */ + public function getInvoker() + { + return $this->_invoker; + } + + /** + * setInvoker + * Defines new invoker (used in Hydrator) + * + * @param mixed $invoker + * @return void + */ + public function setInvoker($invoker) + { + $this->_invoker = $invoker; + } + + /** + * getParams + * returns the parameters of the query + * + * @return array parameters of the query + */ + public function getParams() + { + return $this->_params; + } + + /** + * Get the elapsed time (in microseconds) that the event ran. If the event has + * not yet ended, return false. + * + * @return integer + */ + public function getElapsedSecs() + { + if (is_null($this->_endedMicrotime)) { + return false; + } + return ($this->_endedMicrotime - $this->_startedMicrotime); + } +} diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/EventListener.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/EventListener.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/EventListener.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/EventListener.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/EventListener/Chain.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/EventListener/Chain.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/EventListener/Chain.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/EventListener/Chain.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/EventListener/Exception.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/EventListener/Exception.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/EventListener/Exception.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/EventListener/Exception.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/EventListener/Interface.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/EventListener/Interface.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/EventListener/Interface.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/EventListener/Interface.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Exception.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Exception.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Exception.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Exception.php diff --git a/lib/vendor/lexpress/doctrine1/lib/Doctrine/Export.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Export.php new file mode 100644 index 0000000..ab56d66 --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Export.php @@ -0,0 +1,1389 @@ +. + */ + +/** + * Doctrine_Export + * + * @package Doctrine + * @subpackage Export + * @author Konsta Vesterinen + * @author Lukas Smith (PEAR MDB2 library) + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @link www.doctrine-project.org + * @since 1.0 + * @version $Revision: 7653 $ + */ +class Doctrine_Export extends Doctrine_Connection_Module +{ + protected $valid_default_values = array( + 'text' => '', + 'boolean' => true, + 'integer' => 0, + 'decimal' => 0.0, + 'float' => 0.0, + 'timestamp' => '1970-01-01 00:00:00', + 'time' => '00:00:00', + 'date' => '1970-01-01', + 'clob' => '', + 'blob' => '', + 'string' => '' + ); + + /** + * drop an existing database + * (this method is implemented by the drivers) + * + * @param string $name name of the database that should be dropped + * @return void + */ + public function dropDatabase($database) + { + foreach ((array) $this->dropDatabaseSql($database) as $query) { + $this->conn->execute($query); + } + } + + /** + * drop an existing database + * (this method is implemented by the drivers) + * + * @param string $name name of the database that should be dropped + * @return void + */ + public function dropDatabaseSql($database) + { + throw new Doctrine_Export_Exception('Drop database not supported by this driver.'); + } + + /** + * dropTableSql + * drop an existing table + * + * @param string $table name of table that should be dropped from the database + * @return string + */ + public function dropTableSql($table) + { + return 'DROP TABLE ' . $this->conn->quoteIdentifier($table); + } + + /** + * dropTable + * drop an existing table + * + * @param string $table name of table that should be dropped from the database + * @return void + */ + public function dropTable($table) + { + $this->conn->execute($this->dropTableSql($table)); + } + + /** + * drop existing index + * + * @param string $table name of table that should be used in method + * @param string $name name of the index to be dropped + * @return void + */ + public function dropIndex($table, $name) + { + return $this->conn->exec($this->dropIndexSql($table, $name)); + } + + /** + * dropIndexSql + * + * @param string $table name of table that should be used in method + * @param string $name name of the index to be dropped + * @return string SQL that is used for dropping an index + */ + public function dropIndexSql($table, $name) + { + $name = $this->conn->quoteIdentifier($this->conn->formatter->getIndexName($name)); + + return 'DROP INDEX ' . $name; + } + + /** + * drop existing constraint + * + * @param string $table name of table that should be used in method + * @param string $name name of the constraint to be dropped + * @param string $primary hint if the constraint is primary + * @return void + */ + public function dropConstraint($table, $name, $primary = false) + { + $table = $this->conn->quoteIdentifier($table); + $name = $this->conn->quoteIdentifier($name); + + return $this->conn->exec('ALTER TABLE ' . $table . ' DROP CONSTRAINT ' . $name); + } + + /** + * drop existing foreign key + * + * @param string $table name of table that should be used in method + * @param string $name name of the foreign key to be dropped + * @return void + */ + public function dropForeignKey($table, $name) + { + return $this->dropConstraint($table, $this->conn->formatter->getForeignKeyName($name)); + } + + /** + * dropSequenceSql + * drop existing sequence + * (this method is implemented by the drivers) + * + * @throws Doctrine_Connection_Exception if something fails at database level + * @param string $sequenceName name of the sequence to be dropped + * @return void + */ + public function dropSequence($sequenceName) + { + $this->conn->exec($this->dropSequenceSql($sequenceName)); + } + + /** + * dropSequenceSql + * drop existing sequence + * + * @throws Doctrine_Connection_Exception if something fails at database level + * @param string $sequenceName name of the sequence to be dropped + * @return void + */ + public function dropSequenceSql($sequenceName) + { + throw new Doctrine_Export_Exception('Drop sequence not supported by this driver.'); + } + + /** + * create a new database + * (this method is implemented by the drivers) + * + * @param string $name name of the database that should be created + * @return void + */ + public function createDatabase($database) + { + $this->conn->execute($this->createDatabaseSql($database)); + } + + /** + * create a new database + * (this method is implemented by the drivers) + * + * @param string $name name of the database that should be created + * @return string + */ + public function createDatabaseSql($database) + { + throw new Doctrine_Export_Exception('Create database not supported by this driver.'); + } + + /** + * create a new table + * + * @param string $name Name of the database that should be created + * @param array $fields Associative array that contains the definition of each field of the new table + * The indexes of the array entries are the names of the fields of the table an + * the array entry values are associative arrays like those that are meant to be + * passed with the field definitions to get[Type]Declaration() functions. + * array( + * 'id' => array( + * 'type' => 'integer', + * 'unsigned' => 1 + * 'notnull' => 1 + * 'default' => 0 + * ), + * 'name' => array( + * 'type' => 'text', + * 'length' => 12 + * ), + * 'password' => array( + * 'type' => 'text', + * 'length' => 12 + * ) + * ); + * @param array $options An associative array of table options: + * + * @return string + */ + public function createTableSql($name, array $fields, array $options = array()) + { + if ( ! $name) { + throw new Doctrine_Export_Exception('no valid table name specified'); + } + + if (empty($fields)) { + throw new Doctrine_Export_Exception('no fields specified for table ' . $name); + } + + $queryFields = $this->getFieldDeclarationList($fields); + + + if (isset($options['primary']) && ! empty($options['primary'])) { + $primaryKeys = array_map(array($this->conn, 'quoteIdentifier'), array_values($options['primary'])); + $queryFields .= ', PRIMARY KEY(' . implode(', ', $primaryKeys) . ')'; + } + + if (isset($options['indexes']) && ! empty($options['indexes'])) { + foreach($options['indexes'] as $index => $definition) { + $indexDeclaration = $this->getIndexDeclaration($index, $definition); + // append only created index declarations + if ( ! is_null($indexDeclaration)) { + $queryFields .= ', '.$indexDeclaration; + } + } + } + + $query = 'CREATE TABLE ' . $this->conn->quoteIdentifier($name, true) . ' (' . $queryFields; + + $check = $this->getCheckDeclaration($fields); + + if ( ! empty($check)) { + $query .= ', ' . $check; + } + + $query .= ')'; + + $sql[] = $query; + + if (isset($options['foreignKeys'])) { + + foreach ((array) $options['foreignKeys'] as $k => $definition) { + if (is_array($definition)) { + $sql[] = $this->createForeignKeySql($name, $definition); + } + } + } + return $sql; + } + + /** + * create a new table + * + * @param string $name Name of the database that should be created + * @param array $fields Associative array that contains the definition of each field of the new table + * @param array $options An associative array of table options: + * @see Doctrine_Export::createTableSql() + * + * @return void + */ + public function createTable($name, array $fields, array $options = array()) + { + // Build array of the primary keys if any of the individual field definitions + // specify primary => true + $count = 0; + foreach ($fields as $fieldName => $field) { + if (isset($field['primary']) && $field['primary']) { + if ($count == 0) { + $options['primary'] = array(); + } + $count++; + $options['primary'][] = $fieldName; + } + } + + $sql = (array) $this->createTableSql($name, $fields, $options); + + foreach ($sql as $query) { + $this->conn->execute($query); + } + } + + /** + * create sequence + * + * @throws Doctrine_Connection_Exception if something fails at database level + * @param string $seqName name of the sequence to be created + * @param string $start start value of the sequence; default is 1 + * @param array $options An associative array of table options: + * array( + * 'comment' => 'Foo', + * 'charset' => 'utf8', + * 'collate' => 'utf8_unicode_ci', + * ); + * @return void + */ + public function createSequence($seqName, $start = 1, array $options = array()) + { + return $this->conn->execute($this->createSequenceSql($seqName, $start = 1, $options)); + } + + /** + * return RDBMS specific create sequence statement + * (this method is implemented by the drivers) + * + * @throws Doctrine_Connection_Exception if something fails at database level + * @param string $seqName name of the sequence to be created + * @param string $start start value of the sequence; default is 1 + * @param array $options An associative array of table options: + * array( + * 'comment' => 'Foo', + * 'charset' => 'utf8', + * 'collate' => 'utf8_unicode_ci', + * ); + * @return string + */ + public function createSequenceSql($seqName, $start = 1, array $options = array()) + { + throw new Doctrine_Export_Exception('Create sequence not supported by this driver.'); + } + + /** + * create a constraint on a table + * + * @param string $table name of the table on which the constraint is to be created + * @param string $name name of the constraint to be created + * @param array $definition associative array that defines properties of the constraint to be created. + * Currently, only one property named FIELDS is supported. This property + * is also an associative with the names of the constraint fields as array + * constraints. Each entry of this array is set to another type of associative + * array that specifies properties of the constraint that are specific to + * each field. + * + * Example + * array( + * 'fields' => array( + * 'user_name' => array(), + * 'last_login' => array() + * ) + * ) + * @return void + */ + public function createConstraint($table, $name, $definition) + { + $sql = $this->createConstraintSql($table, $name, $definition); + + return $this->conn->exec($sql); + } + + /** + * create a constraint on a table + * + * @param string $table name of the table on which the constraint is to be created + * @param string $name name of the constraint to be created + * @param array $definition associative array that defines properties of the constraint to be created. + * Currently, only one property named FIELDS is supported. This property + * is also an associative with the names of the constraint fields as array + * constraints. Each entry of this array is set to another type of associative + * array that specifies properties of the constraint that are specific to + * each field. + * + * Example + * array( + * 'fields' => array( + * 'user_name' => array(), + * 'last_login' => array() + * ) + * ) + * @return void + */ + public function createConstraintSql($table, $name, $definition) + { + $table = $this->conn->quoteIdentifier($table); + $name = $this->conn->quoteIdentifier($this->conn->formatter->getIndexName($name)); + $query = 'ALTER TABLE ' . $table . ' ADD CONSTRAINT ' . $name; + + if (isset($definition['primary']) && $definition['primary']) { + $query .= ' PRIMARY KEY'; + } elseif (isset($definition['unique']) && $definition['unique']) { + $query .= ' UNIQUE'; + } + + $fields = array(); + foreach (array_keys($definition['fields']) as $field) { + $fields[] = $this->conn->quoteIdentifier($field, true); + } + $query .= ' ('. implode(', ', $fields) . ')'; + + return $query; + } + + /** + * Get the stucture of a field into an array + * + * @param string $table name of the table on which the index is to be created + * @param string $name name of the index to be created + * @param array $definition associative array that defines properties of the index to be created. + * Currently, only one property named FIELDS is supported. This property + * is also an associative with the names of the index fields as array + * indexes. Each entry of this array is set to another type of associative + * array that specifies properties of the index that are specific to + * each field. + * + * Currently, only the sorting property is supported. It should be used + * to define the sorting direction of the index. It may be set to either + * ascending or descending. + * + * Not all DBMS support index sorting direction configuration. The DBMS + * drivers of those that do not support it ignore this property. Use the + * function supports() to determine whether the DBMS driver can manage indexes. + * + * Example + * array( + * 'fields' => array( + * 'user_name' => array( + * 'sorting' => 'ascending' + * ), + * 'last_login' => array() + * ) + * ) + * @return void + */ + public function createIndex($table, $name, array $definition) + { + return $this->conn->execute($this->createIndexSql($table, $name, $definition)); + } + + /** + * Get the stucture of a field into an array + * + * @param string $table name of the table on which the index is to be created + * @param string $name name of the index to be created + * @param array $definition associative array that defines properties of the index to be created. + * @see Doctrine_Export::createIndex() + * @return string + */ + public function createIndexSql($table, $name, array $definition) + { + $table = $this->conn->quoteIdentifier($table); + $name = $this->conn->quoteIdentifier($name); + $type = ''; + + if (isset($definition['type'])) { + switch (strtolower($definition['type'])) { + case 'unique': + $type = strtoupper($definition['type']) . ' '; + break; + default: + throw new Doctrine_Export_Exception( + 'Unknown type ' . $definition['type'] . ' for index ' . $name . ' in table ' . $table + ); + } + } + + $query = 'CREATE ' . $type . 'INDEX ' . $name . ' ON ' . $table; + + $fields = array(); + foreach ($definition['fields'] as $field) { + $fields[] = $this->conn->quoteIdentifier($field); + } + $query .= ' (' . implode(', ', $fields) . ')'; + + return $query; + } + /** + * createForeignKeySql + * + * @param string $table name of the table on which the foreign key is to be created + * @param array $definition associative array that defines properties of the foreign key to be created. + * @return string + */ + public function createForeignKeySql($table, array $definition) + { + $table = $this->conn->quoteIdentifier($table); + $query = 'ALTER TABLE ' . $table . ' ADD ' . $this->getForeignKeyDeclaration($definition); + + return $query; + } + + /** + * createForeignKey + * + * @param string $table name of the table on which the foreign key is to be created + * @param array $definition associative array that defines properties of the foreign key to be created. + * @return string + */ + public function createForeignKey($table, array $definition) + { + $sql = $this->createForeignKeySql($table, $definition); + + return $this->conn->execute($sql); + } + + /** + * alter an existing table + * (this method is implemented by the drivers) + * + * @param string $name name of the table that is intended to be changed. + * @param array $changes associative array that contains the details of each type + * of change that is intended to be performed. The types of + * changes that are currently supported are defined as follows: + * + * name + * + * New name for the table. + * + * add + * + * Associative array with the names of fields to be added as + * indexes of the array. The value of each entry of the array + * should be set to another associative array with the properties + * of the fields to be added. The properties of the fields should + * be the same as defined by the MDB2 parser. + * + * + * remove + * + * Associative array with the names of fields to be removed as indexes + * of the array. Currently the values assigned to each entry are ignored. + * An empty array should be used for future compatibility. + * + * rename + * + * Associative array with the names of fields to be renamed as indexes + * of the array. The value of each entry of the array should be set to + * another associative array with the entry named name with the new + * field name and the entry named Declaration that is expected to contain + * the portion of the field declaration already in DBMS specific SQL code + * as it is used in the CREATE TABLE statement. + * + * change + * + * Associative array with the names of the fields to be changed as indexes + * of the array. Keep in mind that if it is intended to change either the + * name of a field and any other properties, the change array entries + * should have the new names of the fields as array indexes. + * + * The value of each entry of the array should be set to another associative + * array with the properties of the fields to that are meant to be changed as + * array entries. These entries should be assigned to the new values of the + * respective properties. The properties of the fields should be the same + * as defined by the MDB2 parser. + * + * Example + * array( + * 'name' => 'userlist', + * 'add' => array( + * 'quota' => array( + * 'type' => 'integer', + * 'unsigned' => 1 + * ) + * ), + * 'remove' => array( + * 'file_limit' => array(), + * 'time_limit' => array() + * ), + * 'change' => array( + * 'name' => array( + * 'length' => '20', + * 'definition' => array( + * 'type' => 'text', + * 'length' => 20, + * ), + * ) + * ), + * 'rename' => array( + * 'sex' => array( + * 'name' => 'gender', + * 'definition' => array( + * 'type' => 'text', + * 'length' => 1, + * 'default' => 'M', + * ), + * ) + * ) + * ) + * + * @param boolean $check indicates whether the function should just check if the DBMS driver + * can perform the requested table alterations if the value is true or + * actually perform them otherwise. + * @return void + */ + public function alterTable($name, array $changes, $check = false) + { + $sql = $this->alterTableSql($name, $changes, $check); + + if (is_string($sql) && $sql) { + $this->conn->execute($sql); + } + } + + /** + * generates the sql for altering an existing table + * (this method is implemented by the drivers) + * + * @param string $name name of the table that is intended to be changed. + * @param array $changes associative array that contains the details of each type * + * @param boolean $check indicates whether the function should just check if the DBMS driver + * can perform the requested table alterations if the value is true or + * actually perform them otherwise. + * @see Doctrine_Export::alterTable() + * @return string + */ + public function alterTableSql($name, array $changes, $check = false) + { + throw new Doctrine_Export_Exception('Alter table not supported by this driver.'); + } + + /** + * Get declaration of a number of field in bulk + * + * @param array $fields a multidimensional associative array. + * The first dimension determines the field name, while the second + * dimension is keyed with the name of the properties + * of the field being declared as array indexes. Currently, the types + * of supported field properties are as follows: + * + * length + * Integer value that determines the maximum length of the text + * field. If this argument is missing the field should be + * declared to have the longest length allowed by the DBMS. + * + * default + * Text value to be used as default for this field. + * + * notnull + * Boolean flag that indicates whether this field is constrained + * to not be set to null. + * charset + * Text value with the default CHARACTER SET for this field. + * collation + * Text value with the default COLLATION for this field. + * unique + * unique constraint + * + * @return string + */ + public function getFieldDeclarationList(array $fields) + { + foreach ($fields as $fieldName => $field) { + $query = $this->getDeclaration($fieldName, $field); + + $queryFields[] = $query; + } + return implode(', ', $queryFields); + } + + /** + * Obtain DBMS specific SQL code portion needed to declare a generic type + * field to be used in statements like CREATE TABLE. + * + * @param string $name name the field to be declared. + * @param array $field associative array with the name of the properties + * of the field being declared as array indexes. Currently, the types + * of supported field properties are as follows: + * + * length + * Integer value that determines the maximum length of the text + * field. If this argument is missing the field should be + * declared to have the longest length allowed by the DBMS. + * + * default + * Text value to be used as default for this field. + * + * notnull + * Boolean flag that indicates whether this field is constrained + * to not be set to null. + * + * charset + * Text value with the default CHARACTER SET for this field. + * + * collation + * Text value with the default COLLATION for this field. + * + * unique + * unique constraint + * + * check + * column check constraint + * + * @return string DBMS specific SQL code portion that should be used to + * declare the specified field. + */ + public function getDeclaration($name, array $field) + { + + $default = $this->getDefaultFieldDeclaration($field); + + $charset = (isset($field['charset']) && $field['charset']) ? + ' ' . $this->getCharsetFieldDeclaration($field['charset']) : ''; + + $collation = (isset($field['collation']) && $field['collation']) ? + ' ' . $this->getCollationFieldDeclaration($field['collation']) : ''; + + $notnull = $this->getNotNullFieldDeclaration($field); + + $unique = (isset($field['unique']) && $field['unique']) ? + ' ' . $this->getUniqueFieldDeclaration() : ''; + + $check = (isset($field['check']) && $field['check']) ? + ' ' . $field['check'] : ''; + + $method = 'get' . $field['type'] . 'Declaration'; + + try { + if (method_exists($this->conn->dataDict, $method)) { + return $this->conn->dataDict->$method($name, $field); + } else { + $dec = $this->conn->dataDict->getNativeDeclaration($field); + } + + return $this->conn->quoteIdentifier($name, true) + . ' ' . $dec . $charset . $default . $notnull . $unique . $check . $collation; + } catch (Exception $e) { + throw new Doctrine_Exception('Around field ' . $name . ': ' . $e->getMessage()); + } + + } + + /** + * getDefaultDeclaration + * Obtain DBMS specific SQL code portion needed to set a default value + * declaration to be used in statements like CREATE TABLE. + * + * @param array $field field definition array + * @return string DBMS specific SQL code portion needed to set a default value + */ + public function getDefaultFieldDeclaration($field) + { + $default = ''; + + if (array_key_exists('default', $field)) { + if ($field['default'] === '') { + $field['default'] = empty($field['notnull']) + ? null : $this->valid_default_values[$field['type']]; + + if ($field['default'] === '' && + ($this->conn->getAttribute(Doctrine_Core::ATTR_PORTABILITY) & Doctrine_Core::PORTABILITY_EMPTY_TO_NULL)) { + $field['default'] = null; + } + } + + if ($field['type'] === 'boolean') { + $field['default'] = $this->conn->convertBooleans($field['default']); + } + $default = ' DEFAULT ' . (is_null($field['default']) + ? 'NULL' + : $this->conn->quote($field['default'], $field['type'])); + } + + return $default; + } + + + /** + * getNotNullFieldDeclaration + * Obtain DBMS specific SQL code portion needed to set a NOT NULL + * declaration to be used in statements like CREATE TABLE. + * + * @param array $field field definition array + * @return string DBMS specific SQL code portion needed to set a default value + */ + public function getNotNullFieldDeclaration(array $definition) + { + return (isset($definition['notnull']) && $definition['notnull']) ? ' NOT NULL' : ''; + } + + + /** + * Obtain DBMS specific SQL code portion needed to set a CHECK constraint + * declaration to be used in statements like CREATE TABLE. + * + * @param array $definition check definition + * @return string DBMS specific SQL code portion needed to set a CHECK constraint + */ + public function getCheckDeclaration(array $definition) + { + $constraints = array(); + foreach ($definition as $field => $def) { + if (is_string($def)) { + $constraints[] = 'CHECK (' . $def . ')'; + } else { + if (isset($def['min'])) { + $constraints[] = 'CHECK (' . $field . ' >= ' . $def['min'] . ')'; + } + + if (isset($def['max'])) { + $constraints[] = 'CHECK (' . $field . ' <= ' . $def['max'] . ')'; + } + } + } + + return implode(', ', $constraints); + } + + /** + * Obtain DBMS specific SQL code portion needed to set an index + * declaration to be used in statements like CREATE TABLE. + * + * @param string $name name of the index + * @param array $definition index definition + * @return string DBMS specific SQL code portion needed to set an index + */ + public function getIndexDeclaration($name, array $definition) + { + $name = $this->conn->quoteIdentifier($name); + $type = ''; + + if (isset($definition['type'])) { + if (strtolower($definition['type']) == 'unique') { + $type = strtoupper($definition['type']) . ' '; + } else { + throw new Doctrine_Export_Exception( + 'Unknown type ' . $definition['type'] . ' for index ' . $name + ); + } + } + + if ( ! isset($definition['fields']) || ! is_array($definition['fields'])) { + throw new Doctrine_Export_Exception('No columns given for index ' . $name); + } + + $query = $type . 'INDEX ' . $name; + + $query .= ' (' . $this->getIndexFieldDeclarationList($definition['fields']) . ')'; + + return $query; + } + + /** + * getIndexFieldDeclarationList + * Obtain DBMS specific SQL code portion needed to set an index + * declaration to be used in statements like CREATE TABLE. + * + * @return string + */ + public function getIndexFieldDeclarationList(array $fields) + { + $ret = array(); + foreach ($fields as $field => $definition) { + if (is_array($definition)) { + $ret[] = $this->conn->quoteIdentifier($field); + } else { + $ret[] = $this->conn->quoteIdentifier($definition); + } + } + return implode(', ', $ret); + } + + /** + * A method to return the required SQL string that fits between CREATE ... TABLE + * to create the table as a temporary table. + * + * Should be overridden in driver classes to return the correct string for the + * specific database type. + * + * The default is to return the string "TEMPORARY" - this will result in a + * SQL error for any database that does not support temporary tables, or that + * requires a different SQL command from "CREATE TEMPORARY TABLE". + * + * @return string The string required to be placed between "CREATE" and "TABLE" + * to generate a temporary table, if possible. + */ + public function getTemporaryTableQuery() + { + return 'TEMPORARY'; + } + + /** + * getForeignKeyDeclaration + * Obtain DBMS specific SQL code portion needed to set the FOREIGN KEY constraint + * of a field declaration to be used in statements like CREATE TABLE. + * + * @param array $definition an associative array with the following structure: + * name optional constraint name + * + * local the local field(s) + * + * foreign the foreign reference field(s) + * + * foreignTable the name of the foreign table + * + * onDelete referential delete action + * + * onUpdate referential update action + * + * deferred deferred constraint checking + * + * The onDelete and onUpdate keys accept the following values: + * + * CASCADE: Delete or update the row from the parent table and automatically delete or + * update the matching rows in the child table. Both ON DELETE CASCADE and ON UPDATE CASCADE are supported. + * Between two tables, you should not define several ON UPDATE CASCADE clauses that act on the same column + * in the parent table or in the child table. + * + * SET NULL: Delete or update the row from the parent table and set the foreign key column or columns in the + * child table to NULL. This is valid only if the foreign key columns do not have the NOT NULL qualifier + * specified. Both ON DELETE SET NULL and ON UPDATE SET NULL clauses are supported. + * + * NO ACTION: In standard SQL, NO ACTION means no action in the sense that an attempt to delete or update a primary + * key value is not allowed to proceed if there is a related foreign key value in the referenced table. + * + * RESTRICT: Rejects the delete or update operation for the parent table. NO ACTION and RESTRICT are the same as + * omitting the ON DELETE or ON UPDATE clause. + * + * SET DEFAULT + * + * @return string DBMS specific SQL code portion needed to set the FOREIGN KEY constraint + * of a field declaration. + */ + public function getForeignKeyDeclaration(array $definition) + { + $sql = $this->getForeignKeyBaseDeclaration($definition); + $sql .= $this->getAdvancedForeignKeyOptions($definition); + + return $sql; + } + + /** + * getAdvancedForeignKeyOptions + * Return the FOREIGN KEY query section dealing with non-standard options + * as MATCH, INITIALLY DEFERRED, ON UPDATE, ... + * + * @param array $definition foreign key definition + * @return string + */ + public function getAdvancedForeignKeyOptions(array $definition) + { + $query = ''; + if ( ! empty($definition['onUpdate'])) { + $query .= ' ON UPDATE ' . $this->getForeignKeyReferentialAction($definition['onUpdate']); + } + if ( ! empty($definition['onDelete'])) { + $query .= ' ON DELETE ' . $this->getForeignKeyReferentialAction($definition['onDelete']); + } + return $query; + } + + /** + * getForeignKeyReferentialAction + * + * returns given referential action in uppercase if valid, otherwise throws + * an exception + * + * @throws Doctrine_Exception_Exception if unknown referential action given + * @param string $action foreign key referential action + * @param string foreign key referential action in uppercase + */ + public function getForeignKeyReferentialAction($action) + { + $upper = strtoupper($action); + switch ($upper) { + case 'CASCADE': + case 'SET NULL': + case 'NO ACTION': + case 'RESTRICT': + case 'SET DEFAULT': + return $upper; + break; + default: + throw new Doctrine_Export_Exception('Unknown foreign key referential action \'' . $upper . '\' given.'); + } + } + + /** + * getForeignKeyBaseDeclaration + * Obtain DBMS specific SQL code portion needed to set the FOREIGN KEY constraint + * of a field declaration to be used in statements like CREATE TABLE. + * + * @param array $definition + * @return string + */ + public function getForeignKeyBaseDeclaration(array $definition) + { + $sql = ''; + if (isset($definition['name'])) { + $sql .= 'CONSTRAINT ' . $this->conn->quoteIdentifier($this->conn->formatter->getForeignKeyName($definition['name'])) . ' '; + } + $sql .= 'FOREIGN KEY ('; + + if ( ! isset($definition['local'])) { + throw new Doctrine_Export_Exception('Local reference field missing from definition.'); + } + if ( ! isset($definition['foreign'])) { + throw new Doctrine_Export_Exception('Foreign reference field missing from definition.'); + } + if ( ! isset($definition['foreignTable'])) { + throw new Doctrine_Export_Exception('Foreign reference table missing from definition.'); + } + + if ( ! is_array($definition['local'])) { + $definition['local'] = array($definition['local']); + } + if ( ! is_array($definition['foreign'])) { + $definition['foreign'] = array($definition['foreign']); + } + + $sql .= implode(', ', array_map(array($this->conn, 'quoteIdentifier'), $definition['local'])) + . ') REFERENCES ' + . $this->conn->quoteIdentifier($definition['foreignTable']) . '(' + . implode(', ', array_map(array($this->conn, 'quoteIdentifier'), $definition['foreign'])) . ')'; + + return $sql; + } + + /** + * Obtain DBMS specific SQL code portion needed to set the UNIQUE constraint + * of a field declaration to be used in statements like CREATE TABLE. + * + * @return string DBMS specific SQL code portion needed to set the UNIQUE constraint + * of a field declaration. + */ + public function getUniqueFieldDeclaration() + { + return 'UNIQUE'; + } + + /** + * Obtain DBMS specific SQL code portion needed to set the CHARACTER SET + * of a field declaration to be used in statements like CREATE TABLE. + * + * @param string $charset name of the charset + * @return string DBMS specific SQL code portion needed to set the CHARACTER SET + * of a field declaration. + */ + public function getCharsetFieldDeclaration($charset) + { + return ''; + } + + /** + * Obtain DBMS specific SQL code portion needed to set the COLLATION + * of a field declaration to be used in statements like CREATE TABLE. + * + * @param string $collation name of the collation + * @return string DBMS specific SQL code portion needed to set the COLLATION + * of a field declaration. + */ + public function getCollationFieldDeclaration($collation) + { + return ''; + } + + /** + * exportSchema + * method for exporting Doctrine_Record classes to a schema + * + * if the directory parameter is given this method first iterates + * recursively trhough the given directory in order to find any model classes + * + * Then it iterates through all declared classes and creates tables for the ones + * that extend Doctrine_Record and are not abstract classes + * + * @throws Doctrine_Connection_Exception if some error other than Doctrine_Core::ERR_ALREADY_EXISTS + * occurred during the create table operation + * @param string $directory optional directory parameter + * @return void + */ + public function exportSchema($directory = null) + { + if ($directory !== null) { + $models = Doctrine_Core::filterInvalidModels(Doctrine_Core::loadModels($directory)); + } else { + $models = Doctrine_Core::getLoadedModels(); + } + + $this->exportClasses($models); + } + + public function exportSortedClassesSql($classes, $groupByConnection = true) + { + $connections = array(); + foreach ($classes as $class) { + $connection = Doctrine_Manager::getInstance()->getConnectionForComponent($class); + $connectionName = $connection->getName(); + + if ( ! isset($connections[$connectionName])) { + $connections[$connectionName] = array( + 'create_tables' => array(), + 'create_sequences' => array(), + 'create_indexes' => array(), + 'alters' => array(), + 'create_triggers' => array(), + ); + } + + $sql = $connection->export->exportClassesSql(array($class)); + + // Build array of all the creates + // We need these to happen first + foreach ($sql as $key => $query) { + // If create table statement + if (substr($query, 0, strlen('CREATE TABLE')) == 'CREATE TABLE') { + $connections[$connectionName]['create_tables'][] = $query; + + unset($sql[$key]); + continue; + } + + // If create sequence statement + if (substr($query, 0, strlen('CREATE SEQUENCE')) == 'CREATE SEQUENCE') { + $connections[$connectionName]['create_sequences'][] = $query; + + unset($sql[$key]); + continue; + } + + // If create index statement + if (preg_grep("/CREATE ([^ ]* )?INDEX/", array($query))) { + $connections[$connectionName]['create_indexes'][] = $query; + + unset($sql[$key]); + continue; + } + + // If alter table statement or oracle anonymous block enclosing alter + if (substr($query, 0, strlen('ALTER TABLE')) == 'ALTER TABLE' + || substr($query, 0, strlen('DECLARE')) == 'DECLARE') { + $connections[$connectionName]['alters'][] = $query; + + unset($sql[$key]); + continue; + } + + // If create trgger statement + if (substr($query, 0, strlen('CREATE TRIGGER')) == 'CREATE TRIGGER') { + $connections[$connectionName]['create_triggers'][] = $query; + + unset($sql[$key]); + continue; + } + + // If comment statement + if (substr($query, 0, strlen('COMMENT ON')) == 'COMMENT ON') { + $connections[$connectionName]['comments'][] = $query; + + unset($sql[$key]); + continue; + } + } + } + + // Loop over all the sql again to merge everything together so it is in the correct order + $build = array(); + foreach ($connections as $connectionName => $sql) { + $build[$connectionName] = array_unique(array_merge($sql['create_tables'], $sql['create_sequences'], $sql['create_indexes'], $sql['alters'], $sql['create_triggers'])); + } + + if ( ! $groupByConnection) { + $new = array(); + foreach($build as $connectionname => $sql) { + $new = array_unique(array_merge($new, $sql)); + } + $build = $new; + } + return $build; + } + + /** + * exportClasses + * method for exporting Doctrine_Record classes to a schema + * + * FIXME: This function has ugly hacks in it to make sure sql is inserted in the correct order. + * + * @throws Doctrine_Connection_Exception if some error other than Doctrine_Core::ERR_ALREADY_EXISTS + * occurred during the create table operation + * @param array $classes + * @return void + */ + public function exportClasses(array $classes) + { + $queries = $this->exportSortedClassesSql($classes); + + foreach ($queries as $connectionName => $sql) { + $connection = Doctrine_Manager::getInstance()->getConnection($connectionName); + + $connection->beginTransaction(); + + foreach ($sql as $query) { + try { + $connection->exec($query); + } catch (Doctrine_Connection_Exception $e) { + // we only want to silence table already exists errors + if ($e->getPortableCode() !== Doctrine_Core::ERR_ALREADY_EXISTS) { + $connection->rollback(); + throw new Doctrine_Export_Exception($e->getMessage() . '. Failing Query: ' . $query); + } + } + } + + $connection->commit(); + } + } + + /** + * exportClassesSql + * method for exporting Doctrine_Record classes to a schema + * + * @throws Doctrine_Connection_Exception if some error other than Doctrine_Core::ERR_ALREADY_EXISTS + * occurred during the create table operation + * @param array $classes + * @return void + */ + public function exportClassesSql(array $classes) + { + $models = Doctrine_Core::filterInvalidModels($classes); + + $sql = array(); + + foreach ($models as $name) { + $record = new $name(); + $table = $record->getTable(); + $parents = $table->getOption('joinedParents'); + + foreach ($parents as $parent) { + $data = $table->getConnection()->getTable($parent)->getExportableFormat(); + + $query = $this->conn->export->createTableSql($data['tableName'], $data['columns'], $data['options']); + + $sql = array_merge($sql, (array) $query); + } + + // Don't export the tables with attribute EXPORT_NONE' + if ($table->getAttribute(Doctrine_Core::ATTR_EXPORT) === Doctrine_Core::EXPORT_NONE) { + continue; + } + + $data = $table->getExportableFormat(); + + $query = $this->conn->export->createTableSql($data['tableName'], $data['columns'], $data['options']); + + if (is_array($query)) { + $sql = array_merge($sql, $query); + } else { + $sql[] = $query; + } + + if ($table->getAttribute(Doctrine_Core::ATTR_EXPORT) & Doctrine_Core::EXPORT_PLUGINS) { + $sql = array_merge($sql, $this->exportGeneratorsSql($table)); + } + + // DC-474: Remove dummy $record from repository to not pollute it during export + $table->getRepository()->evict($record->getOid()); + unset($record); + } + + $sql = array_unique($sql); + + rsort($sql); + + return $sql; + } + + /** + * fetches all generators recursively for given table + * + * @param Doctrine_Table $table table object to retrieve the generators from + * @return array an array of Doctrine_Record_Generator objects + */ + public function getAllGenerators(Doctrine_Table $table) + { + $generators = array(); + + foreach ($table->getGenerators() as $name => $generator) { + if ($generator === null) { + continue; + } + + $generators[] = $generator; + + $generatorTable = $generator->getTable(); + + if ($generatorTable instanceof Doctrine_Table) { + $generators = array_merge($generators, $this->getAllGenerators($generatorTable)); + } + } + + return $generators; + } + + /** + * exportGeneratorsSql + * exports plugin tables for given table + * + * @param Doctrine_Table $table the table in which the generators belong to + * @return array an array of sql strings + */ + public function exportGeneratorsSql(Doctrine_Table $table) + { + $sql = array(); + + foreach ($this->getAllGenerators($table) as $name => $generator) { + $table = $generator->getTable(); + + // Make sure plugin has a valid table + if ($table instanceof Doctrine_Table) { + $data = $table->getExportableFormat(); + + $query = $this->conn->export->createTableSql($data['tableName'], $data['columns'], $data['options']); + + $sql = array_merge($sql, (array) $query); + } + } + + return $sql; + } + + /** + * exportSql + * returns the sql for exporting Doctrine_Record classes to a schema + * + * if the directory parameter is given this method first iterates + * recursively trhough the given directory in order to find any model classes + * + * Then it iterates through all declared classes and creates tables for the ones + * that extend Doctrine_Record and are not abstract classes + * + * @throws Doctrine_Connection_Exception if some error other than Doctrine_Core::ERR_ALREADY_EXISTS + * occurred during the create table operation + * @param string $directory optional directory parameter + * @return void + */ + public function exportSql($directory = null) + { + if ($directory !== null) { + $models = Doctrine_Core::filterInvalidModels(Doctrine_Core::loadModels($directory)); + } else { + $models = Doctrine_Core::getLoadedModels(); + } + + return $this->exportSortedClassesSql($models, false); + } + + /** + * exportTable + * exports given table into database based on column and option definitions + * + * @throws Doctrine_Connection_Exception if some error other than Doctrine_Core::ERR_ALREADY_EXISTS + * occurred during the create table operation + * @return boolean whether or not the export operation was successful + * false if table already existed in the database + */ + public function exportTable(Doctrine_Table $table) + { + try { + $data = $table->getExportableFormat(); + + $this->conn->export->createTable($data['tableName'], $data['columns'], $data['options']); + } catch(Doctrine_Connection_Exception $e) { + // we only want to silence table already exists errors + if ($e->getPortableCode() !== Doctrine_Core::ERR_ALREADY_EXISTS) { + throw $e; + } + } + } +} diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Export/Exception.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Exception.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Export/Exception.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Exception.php diff --git a/lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Mssql.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Mssql.php new file mode 100644 index 0000000..30db562 --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Mssql.php @@ -0,0 +1,524 @@ +. + */ + +/** + * Doctrine_Export_Mssql + * + * @package Doctrine + * @subpackage Export + * @author Konsta Vesterinen + * @author Lukas Smith (PEAR MDB2 library) + * @author Frank M. Kromann (PEAR MDB2 Mssql driver) + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @link www.doctrine-project.org + * @since 1.0 + * @version $Revision: 7660 $ + */ +class Doctrine_Export_Mssql extends Doctrine_Export +{ + /** + * create a new database + * + * @param string $name name of the database that should be created + * @return void + */ + public function createDatabase($name) + { + $name = $this->conn->quoteIdentifier($name, true); + $query = "CREATE DATABASE $name"; + $options = $this->conn->getOptions(); + if (isset($options['database_device']) && $options['database_device']) { + $query.= ' ON '.$this->conn->options['database_device']; + $query.= $this->conn->options['database_size'] ? '=' . + $this->conn->options['database_size'] : ''; + } + return $this->conn->standaloneQuery($query, array(), true); + } + + /** + * drop an existing database + * + * @param string $name name of the database that should be dropped + * @return void + */ + public function dropDatabase($name) + { + $name = $this->conn->quoteIdentifier($name, true); + return $this->conn->standaloneQuery('DROP DATABASE ' . $name, array(), true); + } + + /** + * Override the parent method. + * + * @return string The string required to be placed between "CREATE" and "TABLE" + * to generate a temporary table, if possible. + */ + public function getTemporaryTableQuery() + { + return ''; + } + + public function dropIndexSql($table, $name) + { + $name = $this->conn->quoteIdentifier($this->conn->formatter->getIndexName($name)); + $table = $this->conn->quoteIdentifier($table); + + return 'DROP INDEX ' . $name . ' ON ' . $table; + } + + /** + * alter an existing table + * + * @param string $name name of the table that is intended to be changed. + * @param array $changes associative array that contains the details of each type + * of change that is intended to be performed. The types of + * changes that are currently supported are defined as follows: + * + * name + * + * New name for the table. + * + * add + * + * Associative array with the names of fields to be added as + * indexes of the array. The value of each entry of the array + * should be set to another associative array with the properties + * of the fields to be added. The properties of the fields should + * be the same as defined by the Metabase parser. + * + * + * remove + * + * Associative array with the names of fields to be removed as indexes + * of the array. Currently the values assigned to each entry are ignored. + * An empty array should be used for future compatibility. + * + * rename + * + * Associative array with the names of fields to be renamed as indexes + * of the array. The value of each entry of the array should be set to + * another associative array with the entry named name with the new + * field name and the entry named Declaration that is expected to contain + * the portion of the field declaration already in DBMS specific SQL code + * as it is used in the CREATE TABLE statement. + * + * change + * + * Associative array with the names of the fields to be changed as indexes + * of the array. Keep in mind that if it is intended to change either the + * name of a field and any other properties, the change array entries + * should have the new names of the fields as array indexes. + * + * The value of each entry of the array should be set to another associative + * array with the properties of the fields to that are meant to be changed as + * array entries. These entries should be assigned to the new values of the + * respective properties. The properties of the fields should be the same + * as defined by the Metabase parser. + * + * Example + * array( + * 'name' => 'userlist', + * 'add' => array( + * 'quota' => array( + * 'type' => 'integer', + * 'unsigned' => 1 + * ) + * ), + * 'remove' => array( + * 'file_limit' => array(), + * 'time_limit' => array() + * ), + * 'change' => array( + * 'name' => array( + * 'length' => '20', + * 'definition' => array( + * 'type' => 'text', + * 'length' => 20, + * ), + * ) + * ), + * 'rename' => array( + * 'sex' => array( + * 'name' => 'gender', + * 'definition' => array( + * 'type' => 'text', + * 'length' => 1, + * 'default' => 'M', + * ), + * ) + * ) + * ) + * + * @param boolean $check indicates whether the function should just check if the DBMS driver + * can perform the requested table alterations if the value is true or + * actually perform them otherwise. + * @return void + */ + public function alterTable($name, array $changes, $check = false) + { + if ( !$name ) { + throw new Doctrine_Export_Exception('no valid table name specified'); + } + + foreach ($changes as $changeName => $change) { + switch ($changeName) { + case 'add': + case 'remove': + case 'name': + case 'rename': + case 'change': + break; + default: + throw new Doctrine_Export_Exception('alterTable: change type "' . $changeName . '" not yet supported'); + } + } + + if ($check) { + return true; + } + + + $query = ''; + $postQueries = ''; //SQL Server uses a stored procedure to rename objects + + if ( ! empty($changes['name'])) { + $changeName = $this->conn->quoteIdentifier($changes['name'], true); + + $postQueries .= sprintf( + "EXECUTE sp_RENAME '%s', '%s';", + $this->conn->quoteIdentifier($name), + $changeName + ); + } + + //ADD TABLE + if ( ! empty($changes['add']) && is_array($changes['add'])) { + foreach ($changes['add'] as $fieldName => $field) { + if ($query) { + $query .= ', '; + } + $query .= 'ADD ' . $this->getDeclaration($fieldName, $field); + } + } + + //REMOVE TABLE + if ( ! empty($changes['remove']) && is_array($changes['remove'])) { + if ($query) { + $query .= ', '; + } + $query .= 'DROP COLUMN '; + + $dropped = array(); + foreach ($changes['remove'] as $fieldName => $field) { + + $fieldName = $this->conn->quoteIdentifier($fieldName, true); + $dropped[] = $fieldName; + } + + $query .= implode(', ', $dropped) . ' '; + } + + $rename = array(); + if ( ! empty($changes['rename']) && is_array($changes['rename'])) { + foreach ($changes['rename'] as $fieldName => $field) { + $rename[$field['name']] = $fieldName; + } + } + + //CHANGE (COLUMN DEFINITION) + if ( ! empty($changes['change']) && is_array($changes['change'])) { + if ($query) { + $query.= ', '; + } + + $query .= "ALTER COLUMN "; + + $altered = array(); + foreach ($changes['change'] as $fieldName => $field) { + if (isset($rename[$fieldName])) { + $oldFieldName = $rename[$fieldName]; + unset($rename[$fieldName]); + } else { + $oldFieldName = $fieldName; + } + $oldFieldName = $this->conn->quoteIdentifier($oldFieldName, true); + + $declaration = $this->getDeclaration($fieldName, $field['definition']); + + if (preg_match('/(CONSTRAINT\s+([^\s]*)\s+DEFAULT\s+([^\s]*)\s*)|(DEFAULT\s+([^\s]*)\s*)/', $declaration, $matches)) { + // Remove the default constraint declaration from the statement + $altered[] = str_replace($matches[0], '', $declaration); + + if (count($matches) === 6) { + // No constraint name provided. Try to make sure it's unique + $defaultName = 'DF__' . $name . '__' . $fieldName . '__' . mt_rand(); + $defaultValue = $matches[5]; + } else { + $defaultName = $matches[2]; + $defaultValue = $matches[3]; + } + + $postQueries .= sprintf( + ' ALTER TABLE %s ADD CONSTRAINT %s DEFAULT (%s) FOR %s', + $name, + $defaultName, + $defaultValue, + $fieldName + ); + } else { + $altered[] = $declaration; + } + } + + $query .= implode(sprintf( + "; ALTER TABLE %s ALTER COLUMN ", + $this->conn->quoteIdentifier($name, true) + ), $altered) . ' '; + } + + //RENAME (COLUMN) + if ( ! empty($rename) && is_array($rename)) { + foreach ($rename as $renameName => $renamedField) { + + $field = $changes['rename'][$renamedField]; + $renamedField = $this->conn->quoteIdentifier($renamedField); + + $postQueries .= sprintf( + "EXECUTE sp_RENAME '%s.%s', '%s', 'COLUMN';", + $this->conn->quoteIdentifier($name), + $renamedField, + $this->conn->quoteIdentifier($field['name'], true) + ); + } + } + + if ( ! $query && ! $postQueries) { + return false; + } + + $name = $this->conn->quoteIdentifier($name, true); + + $finalQuery = ''; + if ($query) { + $finalQuery .= 'ALTER TABLE ' . $name . ' ' . trim($query) . ';'; + } + + if ($postQueries) { + $finalQuery .= $postQueries; + } + + return $this->conn->exec($finalQuery); + } + + /** + * create sequence + * + * @param string $seqName name of the sequence to be created + * @param string $start start value of the sequence; default is 1 + * @param array $options An associative array of table options: + * array( + * 'comment' => 'Foo', + * 'charset' => 'utf8', + * 'collate' => 'utf8_unicode_ci', + * ); + * @return string + */ + public function createSequence($seqName, $start = 1, array $options = array()) + { + $sequenceName = $this->conn->quoteIdentifier($this->conn->getSequenceName($seqName), true); + $seqcolName = $this->conn->quoteIdentifier($this->conn->options['seqcol_name'], true); + $query = 'CREATE TABLE ' . $sequenceName . ' (' . $seqcolName . + ' INT PRIMARY KEY CLUSTERED IDENTITY(' . $start . ', 1) NOT NULL)'; + + $res = $this->conn->exec($query); + + if ($start == 1) { + return true; + } + + try { + $query = 'SET IDENTITY_INSERT ' . $sequenceName . ' ON ' . + 'INSERT INTO ' . $sequenceName . ' (' . $seqcolName . ') VALUES ( ' . $start . ')'; + $res = $this->conn->exec($query); + } catch (Exception $e) { + $result = $this->conn->exec('DROP TABLE ' . $sequenceName); + } + return true; + } + + /** + * This function drops an existing sequence + * + * @param string $seqName name of the sequence to be dropped + * @return void + */ + public function dropSequenceSql($seqName) + { + $sequenceName = $this->conn->quoteIdentifier($this->conn->getSequenceName($seqName), true); + return 'DROP TABLE ' . $sequenceName; + } + + /** + * create a new table + * + * @param string $name Name of the database that should be created + * @param array $fields Associative array that contains the definition of each field of the new table + * The indexes of the array entries are the names of the fields of the table an + * the array entry values are associative arrays like those that are meant to be + * passed with the field definitions to get[Type]Declaration() functions. + * array( + * 'id' => array( + * 'type' => 'integer', + * 'unsigned' => 1 + * 'notnull' => 1 + * 'default' => 0 + * ), + * 'name' => array( + * 'type' => 'text', + * 'length' => 12 + * ), + * 'password' => array( + * 'type' => 'text', + * 'length' => 12 + * ) + * ); + * @param array $options An associative array of table options: + * + * @return string + */ + public function createTableSql($name, array $fields, array $options = array()) + { + if ( ! $name) { + throw new Doctrine_Export_Exception('no valid table name specified'); + } + + if (empty($fields)) { + throw new Doctrine_Export_Exception('no fields specified for table ' . $name); + } + + // Use field declaration of primary if the primary option not set + if ( ! isset($options['primary'])) { + foreach ($fields as $fieldName => $fieldData) { + if (isset($fieldData['primary']) && $fieldData['primary']) { + $options['primary'][$fieldName] = $fieldName; + } + } + } + + if (isset($options['primary'])) { + foreach ($options['primary'] as $fieldName) { + if (isset($fields[$fieldName])) { + $fields[$fieldName]['notnull'] = true; //Silently forcing NOT NULL as MSSQL will kill a query that has a nullable PK + } + } + } + + $queryFields = $this->getFieldDeclarationList($fields); + + if (isset($options['primary']) && ! empty($options['primary'])) { + $primaryKeys = array_map(array($this->conn, 'quoteIdentifier'), array_values($options['primary'])); + $queryFields .= ', PRIMARY KEY(' . implode(', ', $primaryKeys) . ')'; + } + + $query = 'CREATE TABLE ' . $this->conn->quoteIdentifier($name, true) . ' (' . $queryFields; + + $check = $this->getCheckDeclaration($fields); + + if ( ! empty($check)) { + $query .= ', ' . $check; + } + + $query .= ')'; + + $sql[] = $query; + + if (isset($options['indexes']) && ! empty($options['indexes'])) { + foreach($options['indexes'] as $index => $definition) { + if (is_array($definition)) { + $sql[] = $this->createIndexSql($name,$index, $definition); + } + } + } + + if (isset($options['foreignKeys'])) { + foreach ((array) $options['foreignKeys'] as $k => $definition) { + if (is_array($definition)) { + $sql[] = $this->createForeignKeySql($name, $definition); + } + } + } + + return $sql; + } + + /** + * getNotNullFieldDeclaration + * Obtain DBMS specific SQL code portion needed to set a NOT NULL + * declaration to be used in statements like CREATE TABLE. + * + * @param array $field field definition array + * @return string DBMS specific SQL code portion needed to set a default value + */ + public function getNotNullFieldDeclaration(array $definition) + { + return ( + (isset($definition['notnull']) && $definition['notnull']) || + (isset($definition['primary']) && $definition['primary']) + ) ? ' NOT NULL' : ' NULL'; + } + + /** + * @see Doctrine_Export::getDefaultFieldDeclaration + * + * @param array $field field definition array + * @return string DBMS specific SQL code portion needed to set a default value + */ + public function getDefaultFieldDeclaration($field) + { + $default = ''; + + if (array_key_exists('default', $field)) { + if ($field['default'] === '') { + $field['default'] = empty($field['notnull']) + ? null : $this->valid_default_values[$field['type']]; + + if ($field['default'] === '' && + ($this->conn->getAttribute(Doctrine_Core::ATTR_PORTABILITY) & Doctrine_Core::PORTABILITY_EMPTY_TO_NULL)) { + $field['default'] = null; + } + } + + if ($field['type'] === 'boolean') { + $field['default'] = $this->conn->convertBooleans($field['default']); + } + + if (array_key_exists('defaultConstraintName', $field)) { + $default .= ' CONSTRAINT ' . $field['defaultConstraintName']; + } + + $default .= ' DEFAULT ' . (is_null($field['default']) + ? 'NULL' + : $this->conn->quote($field['default'], $field['type'])); + } + + return $default; + } +} \ No newline at end of file diff --git a/lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Mysql.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Mysql.php new file mode 100644 index 0000000..afa3b9b --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Mysql.php @@ -0,0 +1,819 @@ +. + */ + +/** + * Doctrine_Export_Mysql + * + * @package Doctrine + * @subpackage Export + * @author Konsta Vesterinen + * @author Lukas Smith (PEAR MDB2 library) + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @link www.doctrine-project.org + * @since 1.0 + * @version $Revision: 7653 $ + */ +class Doctrine_Export_Mysql extends Doctrine_Export +{ + /** + * drop existing constraint + * + * @param string $table name of table that should be used in method + * @param string $name name of the constraint to be dropped + * @param string $primary hint if the constraint is primary + * @return void + */ + public function dropConstraint($table, $name, $primary = false) + { + $table = $this->conn->quoteIdentifier($table); + + if ( ! $primary) { + $name = 'CONSTRAINT ' . $this->conn->quoteIdentifier($name); + } else { + $name = 'PRIMARY KEY'; + } + + return $this->conn->exec('ALTER TABLE ' . $table . ' DROP ' . $name); + } + + /** + * createDatabaseSql + * + * @param string $name + * @return void + */ + public function createDatabaseSql($name) + { + return 'CREATE DATABASE ' . $this->conn->quoteIdentifier($name, true); + } + + /** + * drop an existing database + * + * @param string $name name of the database that should be dropped + * @return string + */ + public function dropDatabaseSql($name) + { + return array( + 'SET FOREIGN_KEY_CHECKS = 0', + 'DROP DATABASE ' . $this->conn->quoteIdentifier($name), + 'SET FOREIGN_KEY_CHECKS = 1' + ); + } + + /** + * create a new table + * + * @param string $name Name of the database that should be created + * @param array $fields Associative array that contains the definition of each field of the new table + * The indexes of the array entries are the names of the fields of the table an + * the array entry values are associative arrays like those that are meant to be + * passed with the field definitions to get[Type]Declaration() functions. + * array( + * 'id' => array( + * 'type' => 'integer', + * 'unsigned' => 1 + * 'notnull' => 1 + * 'default' => 0 + * ), + * 'name' => array( + * 'type' => 'text', + * 'length' => 12 + * ), + * 'password' => array( + * 'type' => 'text', + * 'length' => 12 + * ) + * ); + * @param array $options An associative array of table options: + * array( + * 'comment' => 'Foo', + * 'charset' => 'utf8', + * 'collate' => 'utf8_unicode_ci', + * 'type' => 'innodb', + * ); + * + * @return void + */ + public function createTableSql($name, array $fields, array $options = array()) + { + if ( ! $name) + throw new Doctrine_Export_Exception('no valid table name specified'); + + if (empty($fields)) { + throw new Doctrine_Export_Exception('no fields specified for table "'.$name.'"'); + } + $queryFields = $this->getFieldDeclarationList($fields); + + // build indexes for all foreign key fields (needed in MySQL!!) + if (isset($options['foreignKeys'])) { + foreach ($options['foreignKeys'] as $fk) { + $local = $fk['local']; + $found = false; + if (isset($options['indexes'])) { + foreach ($options['indexes'] as $definition) { + if (is_string($definition['fields'])) { + // Check if index already exists on the column + $found = $found || ($local == $definition['fields']); + } else if (in_array($local, $definition['fields']) && count($definition['fields']) === 1) { + // Index already exists on the column + $found = true; + } + } + } + if (isset($options['primary']) && !empty($options['primary']) && + in_array($local, $options['primary'])) { + // field is part of the PK and therefore already indexed + $found = true; + } + + if ( ! $found) { + if (is_array($local)) { + foreach($local as $localidx) { + $options['indexes'][$localidx] = array('fields' => array($localidx => array())); + } + } else { + $options['indexes'][$local] = array('fields' => array($local => array())); + } + } + } + } + + // add all indexes + if (isset($options['indexes']) && ! empty($options['indexes'])) { + // Case Insensitive checking for duplicate indexes... + $dupes = array(); + foreach ($options['indexes'] as $key => $index) { + if (in_array(strtolower($key), $dupes)) { + unset($options['indexes'][$key]); + } else { + $dupes[] = strtolower($key); + } + } + unset($dupes); + + foreach($options['indexes'] as $index => $definition) { + $queryFields .= ', ' . $this->getIndexDeclaration($index, $definition); + } + } + + // attach all primary keys + if (isset($options['primary']) && ! empty($options['primary'])) { + $keyColumns = array_values($options['primary']); + $keyColumns = array_map(array($this->conn, 'quoteIdentifier'), $keyColumns); + $queryFields .= ', PRIMARY KEY(' . implode(', ', $keyColumns) . ')'; + } + + $query = 'CREATE TABLE ' . $this->conn->quoteIdentifier($name, true) . ' (' . $queryFields . ')'; + + $optionStrings = array(); + + if (isset($options['comment'])) { + $optionStrings['comment'] = 'COMMENT = ' . $this->conn->quote($options['comment'], 'text'); + } + if (isset($options['charset'])) { + $optionStrings['charset'] = 'DEFAULT CHARACTER SET ' . $options['charset']; + } + if (isset($options['collate'])) { + $optionStrings['collate'] = 'COLLATE ' . $options['collate']; + } + + $type = false; + + // get the type of the table + if (isset($options['type'])) { + $type = $options['type']; + } else { + $type = $this->conn->getAttribute(Doctrine_Core::ATTR_DEFAULT_TABLE_TYPE); + } + + if ($type) { + $optionStrings[] = 'ENGINE = ' . $type; + } + + if ( ! empty($optionStrings)) { + $query.= ' '.implode(' ', $optionStrings); + } + $sql[] = $query; + + if (isset($options['foreignKeys'])) { + + foreach ((array) $options['foreignKeys'] as $k => $definition) { + if (is_array($definition)) { + $sql[] = $this->createForeignKeySql($name, $definition); + } + } + } + return $sql; + } + + /** + * Obtain DBMS specific SQL code portion needed to declare a generic type + * field to be used in statements like CREATE TABLE. + * + * @param string $name name the field to be declared. + * @param array $field associative array with the name of the properties + * of the field being declared as array indexes. Currently, the types + * of supported field properties are as follows: + * + * length + * Integer value that determines the maximum length of the text + * field. If this argument is missing the field should be + * declared to have the longest length allowed by the DBMS. + * + * default + * Text value to be used as default for this field. + * + * notnull + * Boolean flag that indicates whether this field is constrained + * to not be set to null. + * charset + * Text value with the default CHARACTER SET for this field. + * collation + * Text value with the default COLLATION for this field. + * unique + * unique constraint + * check + * column check constraint + * + * @return string DBMS specific SQL code portion that should be used to + * declare the specified field. + */ + public function getDeclaration($name, array $field) + { + + $default = $this->getDefaultFieldDeclaration($field); + + $charset = (isset($field['charset']) && $field['charset']) ? + ' ' . $this->getCharsetFieldDeclaration($field['charset']) : ''; + + $collation = (isset($field['collation']) && $field['collation']) ? + ' ' . $this->getCollationFieldDeclaration($field['collation']) : ''; + + $notnull = (isset($field['notnull']) && $field['notnull']) ? ' NOT NULL' : ''; + + $unique = (isset($field['unique']) && $field['unique']) ? + ' ' . $this->getUniqueFieldDeclaration() : ''; + + $check = (isset($field['check']) && $field['check']) ? + ' ' . $field['check'] : ''; + + $comment = (isset($field['comment']) && $field['comment']) ? + " COMMENT " . $this->conn->quote($field['comment'], 'text') : ''; + + $method = 'get' . $field['type'] . 'Declaration'; + + try { + if (method_exists($this->conn->dataDict, $method)) { + return $this->conn->dataDict->$method($name, $field); + } else { + $dec = $this->conn->dataDict->getNativeDeclaration($field); + } + + return $this->conn->quoteIdentifier($name, true) + . ' ' . $dec . $charset . $default . $notnull . $comment . $unique . $check . $collation; + } catch (Exception $e) { + throw new Doctrine_Exception('Around field ' . $name . ': ' . $e->getMessage() . "\n\n" . $e->getTraceAsString() . "\n\n"); + } + } + + /** + * alter an existing table + * + * @param string $name name of the table that is intended to be changed. + * @param array $changes associative array that contains the details of each type + * of change that is intended to be performed. The types of + * changes that are currently supported are defined as follows: + * + * name + * + * New name for the table. + * + * add + * + * Associative array with the names of fields to be added as + * indexes of the array. The value of each entry of the array + * should be set to another associative array with the properties + * of the fields to be added. The properties of the fields should + * be the same as defined by the Metabase parser. + * + * + * remove + * + * Associative array with the names of fields to be removed as indexes + * of the array. Currently the values assigned to each entry are ignored. + * An empty array should be used for future compatibility. + * + * rename + * + * Associative array with the names of fields to be renamed as indexes + * of the array. The value of each entry of the array should be set to + * another associative array with the entry named name with the new + * field name and the entry named Declaration that is expected to contain + * the portion of the field declaration already in DBMS specific SQL code + * as it is used in the CREATE TABLE statement. + * + * change + * + * Associative array with the names of the fields to be changed as indexes + * of the array. Keep in mind that if it is intended to change either the + * name of a field and any other properties, the change array entries + * should have the new names of the fields as array indexes. + * + * The value of each entry of the array should be set to another associative + * array with the properties of the fields to that are meant to be changed as + * array entries. These entries should be assigned to the new values of the + * respective properties. The properties of the fields should be the same + * as defined by the Metabase parser. + * + * Example + * array( + * 'name' => 'userlist', + * 'add' => array( + * 'quota' => array( + * 'type' => 'integer', + * 'unsigned' => 1 + * ) + * ), + * 'remove' => array( + * 'file_limit' => array(), + * 'time_limit' => array() + * ), + * 'change' => array( + * 'name' => array( + * 'length' => '20', + * 'definition' => array( + * 'type' => 'text', + * 'length' => 20, + * ), + * ) + * ), + * 'rename' => array( + * 'sex' => array( + * 'name' => 'gender', + * 'definition' => array( + * 'type' => 'text', + * 'length' => 1, + * 'default' => 'M', + * ), + * ) + * ) + * ) + * + * @param boolean $check indicates whether the function should just check if the DBMS driver + * can perform the requested table alterations if the value is true or + * actually perform them otherwise. + * @return boolean + */ + public function alterTableSql($name, array $changes, $check = false) + { + if ( ! $name) { + throw new Doctrine_Export_Exception('no valid table name specified'); + } + foreach ($changes as $changeName => $change) { + switch ($changeName) { + case 'add': + case 'remove': + case 'change': + case 'rename': + case 'name': + break; + default: + throw new Doctrine_Export_Exception('change type "' . $changeName . '" not yet supported'); + } + } + + if ($check) { + return true; + } + + $query = ''; + if ( ! empty($changes['name'])) { + $change_name = $this->conn->quoteIdentifier($changes['name']); + $query .= 'RENAME TO ' . $change_name; + } + + if ( ! empty($changes['add']) && is_array($changes['add'])) { + foreach ($changes['add'] as $fieldName => $field) { + if ($query) { + $query.= ', '; + } + $query.= 'ADD ' . $this->getDeclaration($fieldName, $field); + } + } + + if ( ! empty($changes['remove']) && is_array($changes['remove'])) { + foreach ($changes['remove'] as $fieldName => $field) { + if ($query) { + $query .= ', '; + } + $fieldName = $this->conn->quoteIdentifier($fieldName); + $query .= 'DROP ' . $fieldName; + } + } + + $rename = array(); + if ( ! empty($changes['rename']) && is_array($changes['rename'])) { + foreach ($changes['rename'] as $fieldName => $field) { + $rename[$field['name']] = $fieldName; + } + } + + if ( ! empty($changes['change']) && is_array($changes['change'])) { + foreach ($changes['change'] as $fieldName => $field) { + if ($query) { + $query.= ', '; + } + if (isset($rename[$fieldName])) { + $oldFieldName = $rename[$fieldName]; + unset($rename[$fieldName]); + } else { + $oldFieldName = $fieldName; + } + $oldFieldName = $this->conn->quoteIdentifier($oldFieldName, true); + $query .= 'CHANGE ' . $oldFieldName . ' ' + . $this->getDeclaration($fieldName, $field['definition']); + } + } + + if ( ! empty($rename) && is_array($rename)) { + foreach ($rename as $renameName => $renamedField) { + if ($query) { + $query.= ', '; + } + $field = $changes['rename'][$renamedField]; + $renamedField = $this->conn->quoteIdentifier($renamedField, true); + $query .= 'CHANGE ' . $renamedField . ' ' + . $this->getDeclaration($field['name'], $field['definition']); + } + } + + if ( ! $query) { + return false; + } + + $name = $this->conn->quoteIdentifier($name, true); + + return 'ALTER TABLE ' . $name . ' ' . $query; + } + + /** + * create sequence + * + * @param string $sequenceName name of the sequence to be created + * @param string $start start value of the sequence; default is 1 + * @param array $options An associative array of table options: + * array( + * 'comment' => 'Foo', + * 'charset' => 'utf8', + * 'collate' => 'utf8_unicode_ci', + * 'type' => 'innodb', + * ); + * @return boolean + */ + public function createSequence($sequenceName, $start = 1, array $options = array()) + { + $sequenceName = $this->conn->quoteIdentifier($sequenceName, true); + $seqcolName = $this->conn->quoteIdentifier($this->conn->getAttribute(Doctrine_Core::ATTR_SEQCOL_NAME), true); + + $optionsStrings = array(); + + if (isset($options['comment']) && ! empty($options['comment'])) { + $optionsStrings['comment'] = 'COMMENT = ' . $this->conn->quote($options['comment'], 'string'); + } + + if (isset($options['charset']) && ! empty($options['charset'])) { + $optionsStrings['charset'] = 'DEFAULT CHARACTER SET ' . $options['charset']; + + if (isset($options['collate'])) { + $optionsStrings['charset'] .= ' COLLATE ' . $options['collate']; + } + } + + $type = false; + + if (isset($options['type'])) { + $type = $options['type']; + } else { + $type = $this->conn->getAttribute(Doctrine_Core::ATTR_DEFAULT_TABLE_TYPE); + } + if ($type) { + $optionsStrings[] = 'ENGINE = ' . $type; + } + + + try { + $query = 'CREATE TABLE ' . $sequenceName + . ' (' . $seqcolName . ' BIGINT NOT NULL AUTO_INCREMENT, PRIMARY KEY (' + . $seqcolName . ')) ' . implode($optionsStrings, ' '); + + $res = $this->conn->exec($query); + } catch(Doctrine_Connection_Exception $e) { + throw new Doctrine_Export_Exception('could not create sequence table'); + } + + if ($start == 1 && $res == 1) + return true; + + $query = 'INSERT INTO ' . $sequenceName + . ' (' . $seqcolName . ') VALUES (' . ($start - 1) . ')'; + + $res = $this->conn->exec($query); + + if ($res == 1) + return true; + + // Handle error + try { + $result = $this->conn->exec('DROP TABLE ' . $sequenceName); + } catch(Doctrine_Connection_Exception $e) { + throw new Doctrine_Export_Exception('could not drop inconsistent sequence table'); + } + + + } + + /** + * Get the stucture of a field into an array + * + * @author Leoncx + * @param string $table name of the table on which the index is to be created + * @param string $name name of the index to be created + * @param array $definition associative array that defines properties of the index to be created. + * Currently, only one property named FIELDS is supported. This property + * is also an associative with the names of the index fields as array + * indexes. Each entry of this array is set to another type of associative + * array that specifies properties of the index that are specific to + * each field. + * + * Currently, only the sorting property is supported. It should be used + * to define the sorting direction of the index. It may be set to either + * ascending or descending. + * + * Not all DBMS support index sorting direction configuration. The DBMS + * drivers of those that do not support it ignore this property. Use the + * function supports() to determine whether the DBMS driver can manage indexes. + * + * Example + * array( + * 'fields' => array( + * 'user_name' => array( + * 'sorting' => 'ASC' + * 'length' => 10 + * ), + * 'last_login' => array() + * ) + * ) + * @throws PDOException + * @return void + */ + public function createIndexSql($table, $name, array $definition) + { + $table = $table; + $table = $this->conn->quoteIdentifier($table, true); + + $name = $this->conn->formatter->getIndexName($name); + $name = $this->conn->quoteIdentifier($name); + $type = ''; + if (isset($definition['type'])) { + switch (strtolower($definition['type'])) { + case 'fulltext': + case 'unique': + $type = strtoupper($definition['type']) . ' '; + break; + default: + throw new Doctrine_Export_Exception( + 'Unknown type ' . $definition['type'] . ' for index ' . $name . ' in table ' . $table + ); + } + } + $query = 'CREATE ' . $type . 'INDEX ' . $name . ' ON ' . $table; + $query .= ' (' . $this->getIndexFieldDeclarationList($definition['fields']) . ')'; + + return $query; + } + + /** + * getDefaultDeclaration + * Obtain DBMS specific SQL code portion needed to set a default value + * declaration to be used in statements like CREATE TABLE. + * + * @param array $field field definition array + * @return string DBMS specific SQL code portion needed to set a default value + */ + public function getDefaultFieldDeclaration($field) + { + $default = ''; + if (isset($field['default']) && ( ! isset($field['length']) || $field['length'] <= 255)) { + if ($field['default'] === '') { + $field['default'] = empty($field['notnull']) + ? null : $this->valid_default_values[$field['type']]; + + if ($field['default'] === '' + && ($this->conn->getAttribute(Doctrine_Core::ATTR_PORTABILITY) & Doctrine_Core::PORTABILITY_EMPTY_TO_NULL) + ) { + $field['default'] = ' '; + } + } + + // Proposed patch: + if ($field['type'] == 'enum' && $this->conn->getAttribute(Doctrine_Core::ATTR_USE_NATIVE_ENUM)) { + $fieldType = 'varchar'; + } else { + $fieldType = $field['type']; + } + + $default = ' DEFAULT ' . (is_null($field['default']) + ? 'NULL' + : $this->conn->quote($field['default'], $fieldType)); + //$default = ' DEFAULT ' . $this->conn->quote($field['default'], $field['type']); + } + + return $default; + } + + /** + * Obtain DBMS specific SQL code portion needed to set an index + * declaration to be used in statements like CREATE TABLE. + * + * @param string $charset name of the index + * @param array $definition index definition + * @return string DBMS specific SQL code portion needed to set an index + */ + public function getIndexDeclaration($name, array $definition) + { + $name = $this->conn->formatter->getIndexName($name); + $type = ''; + if (isset($definition['type'])) { + switch (strtolower($definition['type'])) { + case 'fulltext': + case 'unique': + $type = strtoupper($definition['type']) . ' '; + break; + default: + throw new Doctrine_Export_Exception( + 'Unknown type ' . $definition['type'] . ' for index ' . $name + ); + } + } + + if ( ! isset($definition['fields'])) { + throw new Doctrine_Export_Exception('No columns given for index ' . $name); + } + if ( ! is_array($definition['fields'])) { + $definition['fields'] = array($definition['fields']); + } + + $query = $type . 'INDEX ' . $this->conn->quoteIdentifier($name); + + $query .= ' (' . $this->getIndexFieldDeclarationList($definition['fields']) . ')'; + + return $query; + } + + /** + * getIndexFieldDeclarationList + * Obtain DBMS specific SQL code portion needed to set an index + * declaration to be used in statements like CREATE TABLE. + * + * @return string + */ + public function getIndexFieldDeclarationList(array $fields) + { + $declFields = array(); + + foreach ($fields as $fieldName => $field) { + $fieldString = $this->conn->quoteIdentifier($fieldName); + + if (is_array($field)) { + if (isset($field['length'])) { + $fieldString .= '(' . $field['length'] . ')'; + } + + if (isset($field['sorting'])) { + $sort = strtoupper($field['sorting']); + switch ($sort) { + case 'ASC': + case 'DESC': + $fieldString .= ' ' . $sort; + break; + default: + throw new Doctrine_Export_Exception('Unknown index sorting option given.'); + } + } + } else { + $fieldString = $this->conn->quoteIdentifier($field); + } + $declFields[] = $fieldString; + } + return implode(', ', $declFields); + } + + /** + * Returns a character set declaration. + * + * @param string $charset A character set + * + * @return string A character set declaration + */ + public function getCharsetFieldDeclaration($charset) + { + return $this->conn->dataDict->getCharsetFieldDeclaration($charset); + } + + /** + * Returns a collation declaration. + * + * @param string $collation A collation + * + * @return string A collation declaration + */ + public function getCollationFieldDeclaration($collation) + { + return $this->conn->dataDict->getCollationFieldDeclaration($collation); + } + + /** + * getAdvancedForeignKeyOptions + * Return the FOREIGN KEY query section dealing with non-standard options + * as MATCH, INITIALLY DEFERRED, ON UPDATE, ... + * + * @param array $definition + * @return string + */ + public function getAdvancedForeignKeyOptions(array $definition) + { + $query = ''; + if ( ! empty($definition['match'])) { + $query .= ' MATCH ' . $definition['match']; + } + if ( ! empty($definition['onUpdate'])) { + $query .= ' ON UPDATE ' . $this->getForeignKeyReferentialAction($definition['onUpdate']); + } + if ( ! empty($definition['onDelete'])) { + $query .= ' ON DELETE ' . $this->getForeignKeyReferentialAction($definition['onDelete']); + } + return $query; + } + + /** + * drop existing index + * + * @param string $table name of table that should be used in method + * @param string $name name of the index to be dropped + * @return void + */ + public function dropIndexSql($table, $name) + { + $table = $this->conn->quoteIdentifier($table, true); + $name = $this->conn->quoteIdentifier($this->conn->formatter->getIndexName($name), true); + return 'DROP INDEX ' . $name . ' ON ' . $table; + } + + /** + * dropTable + * + * @param string $table name of table that should be dropped from the database + * @throws PDOException + * @return void + */ + public function dropTableSql($table) + { + $table = $this->conn->quoteIdentifier($table, true); + return 'DROP TABLE ' . $table; + } + + /** + * drop existing foreign key + * + * @param string $table name of table that should be used in method + * @param string $name name of the foreign key to be dropped + * @return void + */ + public function dropForeignKey($table, $name) + { + $table = $this->conn->quoteIdentifier($table); + $name = $this->conn->quoteIdentifier($this->conn->formatter->getForeignKeyName($name)); + + return $this->conn->exec('ALTER TABLE ' . $table . ' DROP FOREIGN KEY ' . $name); + } +} diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Export/Oracle.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Oracle.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Export/Oracle.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Oracle.php diff --git a/lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Pgsql.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Pgsql.php new file mode 100644 index 0000000..6f1b106 --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Pgsql.php @@ -0,0 +1,393 @@ +. + */ + +/** + * Doctrine_Export_Pgsql + * + * @package Doctrine + * @subpackage Export + * @author Konsta Vesterinen + * @author Lukas Smith (PEAR MDB2 library) + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @link www.doctrine-project.org + * @since 1.0 + * @version $Revision: 7680 $ + */ +class Doctrine_Export_Pgsql extends Doctrine_Export +{ + public $tmpConnectionDatabase = 'postgres'; + + /** + * createDatabaseSql + * + * @param string $name + * @return void + */ + public function createDatabaseSql($name) + { + $query = 'CREATE DATABASE ' . $this->conn->quoteIdentifier($name); + + return $query; + } + + /** + * drop an existing database + * + * @param string $name name of the database that should be dropped + * @throws PDOException + * @access public + */ + public function dropDatabaseSql($name) + { + $query = 'DROP DATABASE ' . $this->conn->quoteIdentifier($name); + + return $query; + } + + /** + * getAdvancedForeignKeyOptions + * Return the FOREIGN KEY query section dealing with non-standard options + * as MATCH, INITIALLY DEFERRED, ON UPDATE, ... + * + * @param array $definition foreign key definition + * @return string + * @access protected + */ + public function getAdvancedForeignKeyOptions(array $definition) + { + $query = ''; + if (isset($definition['match'])) { + $query .= ' MATCH ' . $definition['match']; + } + if (isset($definition['onUpdate'])) { + $query .= ' ON UPDATE ' . $definition['onUpdate']; + } + if (isset($definition['onDelete'])) { + $query .= ' ON DELETE ' . $definition['onDelete']; + } + if (isset($definition['deferrable'])) { + $query .= ' DEFERRABLE'; + } else { + $query .= ' NOT DEFERRABLE'; + } + if (isset($definition['deferred'])) { + $query .= ' INITIALLY DEFERRED'; + } else { + $query .= ' INITIALLY IMMEDIATE'; + } + return $query; + } + + /** + * generates the sql for altering an existing table on postgresql + * + * @param string $name name of the table that is intended to be changed. + * @param array $changes associative array that contains the details of each type * + * @param boolean $check indicates whether the function should just check if the DBMS driver + * can perform the requested table alterations if the value is true or + * actually perform them otherwise. + * @see Doctrine_Export::alterTable() + * @return array + */ + public function alterTableSql($name, array $changes, $check = false) + { + foreach ($changes as $changeName => $change) { + switch ($changeName) { + case 'add': + case 'remove': + case 'change': + case 'name': + case 'rename': + break; + default: + throw new Doctrine_Export_Exception('change type "' . $changeName . '\" not yet supported'); + } + } + + if ($check) { + return true; + } + + $sql = array(); + + if (isset($changes['add']) && is_array($changes['add'])) { + foreach ($changes['add'] as $fieldName => $field) { + $query = 'ADD ' . $this->getDeclaration($fieldName, $field); + $sql[] = 'ALTER TABLE ' . $this->conn->quoteIdentifier($name, true) . ' ' . $query; + } + } + + if (isset($changes['remove']) && is_array($changes['remove'])) { + foreach ($changes['remove'] as $fieldName => $field) { + $fieldName = $this->conn->quoteIdentifier($fieldName, true); + $query = 'DROP ' . $fieldName; + $sql[] = 'ALTER TABLE ' . $this->conn->quoteIdentifier($name, true) . ' ' . $query; + } + } + + if (isset($changes['change']) && is_array($changes['change'])) { + foreach ($changes['change'] as $fieldName => $field) { + $fieldName = $this->conn->quoteIdentifier($fieldName, true); + if (isset($field['definition']['type'])) { + $serverInfo = $this->conn->getServerVersion(); + + if (is_array($serverInfo) && $serverInfo['major'] < 8) { + throw new Doctrine_Export_Exception('changing column type for "'.$field['type'].'\" requires PostgreSQL 8.0 or above'); + } + $query = 'ALTER ' . $fieldName . ' TYPE ' . $this->conn->dataDict->getNativeDeclaration($field['definition']); + $sql[] = 'ALTER TABLE ' . $this->conn->quoteIdentifier($name, true) . ' ' . $query; + } + if (array_key_exists('default', $field['definition'])) { + $query = 'ALTER ' . $fieldName . ' SET DEFAULT ' . $this->conn->quote($field['definition']['default'], $field['definition']['type']); + $sql[] = 'ALTER TABLE ' . $this->conn->quoteIdentifier($name, true) . ' ' . $query; + } + if ( isset($field['definition']['notnull'])) { + $query = 'ALTER ' . $fieldName . ' ' . ($field['definition']['notnull'] ? 'SET' : 'DROP') . ' NOT NULL'; + $sql[] = 'ALTER TABLE ' . $this->conn->quoteIdentifier($name, true) . ' ' . $query; + } + } + } + + if (isset($changes['rename']) && is_array($changes['rename'])) { + foreach ($changes['rename'] as $fieldName => $field) { + $fieldName = $this->conn->quoteIdentifier($fieldName, true); + $sql[] = 'ALTER TABLE ' . $this->conn->quoteIdentifier($name, true) . ' RENAME COLUMN ' . $fieldName . ' TO ' . $this->conn->quoteIdentifier($field['name'], true); + } + } + + $name = $this->conn->quoteIdentifier($name, true); + if (isset($changes['name'])) { + $changeName = $this->conn->quoteIdentifier($changes['name'], true); + $sql[] = 'ALTER TABLE ' . $this->conn->quoteIdentifier($name, true) . ' RENAME TO ' . $changeName; + } + + return $sql; + } + + /** + * alter an existing table + * + * @param string $name name of the table that is intended to be changed. + * @param array $changes associative array that contains the details of each type + * of change that is intended to be performed. The types of + * changes that are currently supported are defined as follows: + * + * name + * + * New name for the table. + * + * add + * + * Associative array with the names of fields to be added as + * indexes of the array. The value of each entry of the array + * should be set to another associative array with the properties + * of the fields to be added. The properties of the fields should + * be the same as defined by the Metabase parser. + * + * + * remove + * + * Associative array with the names of fields to be removed as indexes + * of the array. Currently the values assigned to each entry are ignored. + * An empty array should be used for future compatibility. + * + * rename + * + * Associative array with the names of fields to be renamed as indexes + * of the array. The value of each entry of the array should be set to + * another associative array with the entry named name with the new + * field name and the entry named Declaration that is expected to contain + * the portion of the field declaration already in DBMS specific SQL code + * as it is used in the CREATE TABLE statement. + * + * change + * + * Associative array with the names of the fields to be changed as indexes + * of the array. Keep in mind that if it is intended to change either the + * name of a field and any other properties, the change array entries + * should have the new names of the fields as array indexes. + * + * The value of each entry of the array should be set to another associative + * array with the properties of the fields to that are meant to be changed as + * array entries. These entries should be assigned to the new values of the + * respective properties. The properties of the fields should be the same + * as defined by the Metabase parser. + * + * Example + * array( + * 'name' => 'userlist', + * 'add' => array( + * 'quota' => array( + * 'type' => 'integer', + * 'unsigned' => 1 + * ) + * ), + * 'remove' => array( + * 'file_limit' => array(), + * 'time_limit' => array() + * ), + * 'change' => array( + * 'name' => array( + * 'length' => '20', + * 'definition' => array( + * 'type' => 'text', + * 'length' => 20, + * ), + * ) + * ), + * 'rename' => array( + * 'sex' => array( + * 'name' => 'gender', + * 'definition' => array( + * 'type' => 'text', + * 'length' => 1, + * 'default' => 'M', + * ), + * ) + * ) + * ) + * + * @param boolean $check indicates whether the function should just check if the DBMS driver + * can perform the requested table alterations if the value is true or + * actually perform them otherwise. + * @throws Doctrine_Connection_Exception + * @return boolean + */ + public function alterTable($name, array $changes, $check = false) + { + $sql = $this->alterTableSql($name, $changes, $check); + foreach ($sql as $query) { + $this->conn->exec($query); + } + return true; + } + + /** + * return RDBMS specific create sequence statement + * + * @throws Doctrine_Connection_Exception if something fails at database level + * @param string $seqName name of the sequence to be created + * @param string $start start value of the sequence; default is 1 + * @param array $options An associative array of table options: + * array( + * 'comment' => 'Foo', + * 'charset' => 'utf8', + * 'collate' => 'utf8_unicode_ci', + * ); + * @return string + */ + public function createSequenceSql($sequenceName, $start = 1, array $options = array()) + { + $sequenceName = $this->conn->quoteIdentifier($this->conn->formatter->getSequenceName($sequenceName), true); + return 'CREATE SEQUENCE ' . $sequenceName . ' INCREMENT 1' . + ($start < 1 ? ' MINVALUE ' . $start : '') . ' START ' . $start; + } + + /** + * drop existing sequence + * + * @param string $sequenceName name of the sequence to be dropped + */ + public function dropSequenceSql($sequenceName) + { + $sequenceName = $this->conn->quoteIdentifier($this->conn->formatter->getSequenceName($sequenceName), true); + return 'DROP SEQUENCE ' . $sequenceName; + } + + /** + * Creates a table. + * + * @param unknown_type $name + * @param array $fields + * @param array $options + * @return unknown + */ + public function createTableSql($name, array $fields, array $options = array()) + { + if ( ! $name) { + throw new Doctrine_Export_Exception('no valid table name specified'); + } + + if (empty($fields)) { + throw new Doctrine_Export_Exception('no fields specified for table ' . $name); + } + + $queryFields = $this->getFieldDeclarationList($fields); + + + if (isset($options['primary']) && ! empty($options['primary'])) { + $keyColumns = array_values($options['primary']); + $keyColumns = array_map(array($this->conn, 'quoteIdentifier'), $keyColumns); + $queryFields .= ', PRIMARY KEY(' . implode(', ', $keyColumns) . ')'; + } + + $query = 'CREATE TABLE ' . $this->conn->quoteIdentifier($name, true) . ' (' . $queryFields; + + if ($check = $this->getCheckDeclaration($fields)) { + $query .= ', ' . $check; + } + + if (isset($options['checks']) && $check = $this->getCheckDeclaration($options['checks'])) { + $query .= ', ' . $check; + } + + $query .= ')'; + + $sql[] = $query; + + if (isset($options['indexes']) && ! empty($options['indexes'])) { + foreach($options['indexes'] as $index => $definition) { + $sql[] = $this->createIndexSql($name, $index, $definition); + } + } + + if (isset($options['foreignKeys'])) { + + foreach ((array) $options['foreignKeys'] as $k => $definition) { + if (is_array($definition)) { + $sql[] = $this->createForeignKeySql($name, $definition); + } + } + } + if (isset($options['sequenceName'])) { + $sql[] = $this->createSequenceSql($options['sequenceName']); + } + return $sql; + } + + /** + * Get the stucture of a field into an array. + * + * @param string $table name of the table on which the index is to be created + * @param string $name name of the index to be created + * @param array $definition associative array that defines properties of the index to be created. + * @see Doctrine_Export::createIndex() + * @return string + */ + public function createIndexSql($table, $name, array $definition) + { + $query = parent::createIndexSql($table, $name, $definition); + if (isset($definition['where'])) { + return $query . ' WHERE ' . $definition['where']; + } + return $query; + } +} \ No newline at end of file diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Export/Reporter.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Reporter.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Export/Reporter.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Reporter.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Export/Schema.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Schema.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Export/Schema.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Schema.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Export/Sqlite.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Sqlite.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Export/Sqlite.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Export/Sqlite.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Expression.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Expression.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Expression/Driver.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression/Driver.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Expression/Driver.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression/Driver.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Expression/Exception.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression/Exception.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Expression/Exception.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression/Exception.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Expression/Mock.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression/Mock.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Expression/Mock.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression/Mock.php diff --git a/lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression/Mssql.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression/Mssql.php new file mode 100644 index 0000000..dc4f494 --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression/Mssql.php @@ -0,0 +1,135 @@ +. + */ + +/** + * Doctrine_Expression_Mssql + * + * @package Doctrine + * @subpackage Expression + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @link www.doctrine-project.org + * @since 1.0 + * @version $Revision: 7490 $ + * @author Konsta Vesterinen + */ +class Doctrine_Expression_Mssql extends Doctrine_Expression_Driver +{ + /** + * Return string to call a variable with the current timestamp inside an SQL statement + * There are three special variables for current date and time: + * - CURRENT_TIMESTAMP (date and time, TIMESTAMP type) + * - CURRENT_DATE (date, DATE type) + * - CURRENT_TIME (time, TIME type) + * + * @return string to call a variable with the current timestamp + * @access public + */ + public function now($type = 'timestamp') + { + switch ($type) { + case 'time': + case 'date': + case 'timestamp': + default: + return 'GETDATE()'; + } + } + + /** + * return string to call a function to get a substring inside an SQL statement + * + * @return string to call a function to get a substring + */ + public function substring($value, $position, $length = null) + { + if ( ! is_null($length)) { + return 'SUBSTRING(' . $value . ', ' . $position . ', ' . $length . ')'; + } + return 'SUBSTRING(' . $value . ', ' . $position . ', LEN(' . $value . ') - ' . $position . ' + 1)'; + } + + /** + * Returns string to concatenate two or more string parameters + * + * @param string $arg1 + * @param string $arg2 + * @param string $values... + * @return string to concatenate two strings + */ + public function concat() + { + $args = func_get_args(); + return '(' . implode(' + ', $args) . ')'; + } + + /** + * Returns global unique identifier + * + * @return string to get global unique identifier + */ + public function guid() + { + return 'NEWID()'; + } + + /** + * Returns the length of a text field + * + * @param string $column + * + * @return string + */ + public function length($column) + { + return 'LEN (' . $column . ')'; + } + + /** + * Returns an integer representing the specified datepart of the specified date. + * + * datepart + * + * Is the parameter that specifies the part of the date to return. The table lists dateparts and abbreviations recognized by Microsoft¨ SQL Serverª. + * + * Datepart Abbreviations + * year yy, yyyy + * quarter qq, q + * month mm, m + * dayofyear dy, y + * day dd, d + * week wk, ww + * weekday dw + * hour hh + * minute mi, n + * second ss, s + * millisecond ms + * + * @param $datepart + * @param $date + */ + public function date_part($datepart, $date) + { + // remove ' and " from datepart for dblib + $datepart = str_replace(array('\'', '"'), '', $datepart); + + return 'DATEPART(' . $datepart . ', ' . $date . ')'; + } +} diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Expression/Mysql.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression/Mysql.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Expression/Mysql.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression/Mysql.php diff --git a/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Expression/Oracle.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression/Oracle.php similarity index 100% rename from lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/vendor/doctrine/Doctrine/Expression/Oracle.php rename to lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression/Oracle.php diff --git a/lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression/Pgsql.php b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression/Pgsql.php new file mode 100644 index 0000000..f447b1e --- /dev/null +++ b/lib/vendor/lexpress/doctrine1/lib/Doctrine/Expression/Pgsql.php @@ -0,0 +1,260 @@ +. + */ + +/** + * Doctrine_Expression_Pgsql + * + * @package Doctrine + * @subpackage Expression + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @link www.doctrine-project.org + * @since 1.0 + * @version $Revision: 7685 $ + * @author Konsta Vesterinen + */ +class Doctrine_Expression_Pgsql extends Doctrine_Expression_Driver +{ + /** + * Returns the md5 sum of a field. + * + * Note: Not SQL92, but common functionality + * + * md5() works with the default PostgreSQL 8 versions. + * + * If you are using PostgreSQL 7.x or older you need + * to make sure that the digest procedure is installed. + * If you use RPMS (Redhat and Mandrake) install the postgresql-contrib + * package. You must then install the procedure by running this shell command: + * + * psql [dbname] < /usr/share/pgsql/contrib/pgcrypto.sql + * + * You should make sure you run this as the postgres user. + * + * @return string + */ + public function md5($column) + { + $column = $this->getIdentifier($column); + + return 'MD5(' . $column . ')'; + } + + /** + * Returns part of a string. + * + * Note: Not SQL92, but common functionality. + * + * @param string $value the target $value the string or the string column. + * @param int $from extract from this characeter. + * @param int $len extract this amount of characters. + * @return string sql that extracts part of a string. + */ + public function substring($value, $from, $len = null) + { + $value = $this->getIdentifier($value); + + if ($len === null) { + $len = $this->getIdentifier($len); + return 'SUBSTR(' . $value . ', ' . $from . ')'; + } else { + return 'SUBSTR(' . $value . ', ' . $from . ', ' . $len . ')'; + } + } + + /** + * Returns a series of strings concatinated + * + * concat() accepts an arbitrary number of parameters. Each parameter + * must contain an expression or an array with expressions. + * + * @param string|array(string) strings that will be concatinated. + * @return string + */ + + + /** + * PostgreSQLs AGE( [, ]) function. + * + * @param string $timestamp1 timestamp to subtract from NOW() + * @param string $timestamp2 optional; if given: subtract arguments + * @return string + */ + public function age($timestamp1, $timestamp2 = null) { + if ( $timestamp2 == null ) { + return 'AGE(' . $timestamp1 . ')'; + } + return 'AGE(' . $timestamp1 . ', ' . $timestamp2 . ')'; + } + + /** + * PostgreSQLs DATE_PART( ,