diff --git a/.gitmodules b/.gitmodules
index 5621aa2e0..ef840b0b9 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -4,3 +4,9 @@
[submodule "lib/vendor/doctrine-dbal"]
path = lib/vendor/doctrine-dbal
url = git://github.com/doctrine/dbal.git
+[submodule "lib/vendor/Symfony/Component/Console"]
+ path = lib/vendor/Symfony/Component/Console
+ url = git://github.com/symfony/Console.git
+[submodule "lib/vendor/Symfony/Component/Yaml"]
+ path = lib/vendor/Symfony/Component/Yaml
+ url = git://github.com/symfony/Yaml.git
diff --git a/build.xml b/build.xml
index e4b7805e1..320b593ed 100644
--- a/build.xml
+++ b/build.xml
@@ -160,10 +160,14 @@
+
+
script
Doctrine/Common/
Doctrine/DBAL/
+ Symfony/Component/Yaml/
+ Symfony/Component/Console/
@@ -209,4 +213,57 @@
+
+
+
+
+ DoctrineSymfonyConsole
+ Symfony Console Component
+ pear.doctrine-project.org
+ A command line interface tool from the Symfony project. Packaged for shipping with Doctrine projects using ORM version numbers.
+
+ NewBSD License
+
+
+ -
+
+
+
+
+ Doctrine/Common/
+ Doctrine/DBAL/
+ Doctrine/ORM/
+ Symfony/Component/Yaml/
+
+
+
+
+
+ DoctrineSymfonyYaml
+ Symfony Yaml Component
+ pear.doctrine-project.org
+ A YAML Parser from the Symfony project. Packaged for shipping with Doctrine projects using ORM version numbers.
+
+ NewBSD License
+
+
+ -
+
+
+
+
+ Doctrine/Common/
+ Doctrine/DBAL/
+ Doctrine/ORM/
+ Symfony/Component/Console/
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/lib/Doctrine/ORM/AbstractQuery.php b/lib/Doctrine/ORM/AbstractQuery.php
index 5c7f0747a..b1b24230b 100644
--- a/lib/Doctrine/ORM/AbstractQuery.php
+++ b/lib/Doctrine/ORM/AbstractQuery.php
@@ -486,7 +486,7 @@ abstract class AbstractQuery
/**
* Executes the query.
*
- * @param string $params Any additional query parameters.
+ * @param array $params Any additional query parameters.
* @param integer $hydrationMode Processing mode to be used during the hydration process.
* @return mixed
*/
@@ -506,10 +506,10 @@ abstract class AbstractQuery
// Check result cache
if ($this->_useResultCache && $cacheDriver = $this->getResultCacheDriver()) {
- list($id, $hash) = $this->getResultCacheId();
- $cached = $this->_expireResultCache ? false : $cacheDriver->fetch($id);
+ list($key, $hash) = $this->getResultCacheId();
+ $cached = $this->_expireResultCache ? false : $cacheDriver->fetch($hash);
- if ($cached === false || !isset($cached[$id])) {
+ if ($cached === false || !isset($cached[$key])) {
// Cache miss.
$stmt = $this->_doExecute();
@@ -517,12 +517,12 @@ abstract class AbstractQuery
$stmt, $this->_resultSetMapping, $this->_hints
);
- $cacheDriver->save($id, $result, $this->_resultCacheTTL);
+ $cacheDriver->save($hash, array($key => $result), $this->_resultCacheTTL);
return $result;
} else {
// Cache hit.
- return $cached[$id];
+ return $cached[$key];
}
}
@@ -556,7 +556,7 @@ abstract class AbstractQuery
* Will return the configured id if it exists otherwise a hash will be
* automatically generated for you.
*
- * @return array ($id, $hash)
+ * @return array ($key, $hash)
*/
protected function getResultCacheId()
{
diff --git a/lib/Doctrine/ORM/EntityManager.php b/lib/Doctrine/ORM/EntityManager.php
index 305d5c8b3..2839099fc 100644
--- a/lib/Doctrine/ORM/EntityManager.php
+++ b/lib/Doctrine/ORM/EntityManager.php
@@ -355,7 +355,7 @@ class EntityManager implements ObjectManager
// Check identity map first, if its already in there just return it.
if ($entity = $this->unitOfWork->tryGetById($identifier, $class->rootEntityName)) {
- return $entity;
+ return ($entity instanceof $class->name) ? $entity : null;
}
if ($class->subClasses) {
$entity = $this->find($entityName, $identifier);
@@ -395,7 +395,7 @@ class EntityManager implements ObjectManager
// Check identity map first, if its already in there just return it.
if ($entity = $this->unitOfWork->tryGetById($identifier, $class->rootEntityName)) {
- return $entity;
+ return ($entity instanceof $class->name) ? $entity : null;
}
if ( ! is_array($identifier)) {
$identifier = array($class->identifier[0] => $identifier);
@@ -725,6 +725,6 @@ class EntityManager implements ObjectManager
throw new \InvalidArgumentException("Invalid argument: " . $conn);
}
- return new self($conn, $config, $conn->getEventManager());
+ return new EntityManager($conn, $config, $conn->getEventManager());
}
}
diff --git a/lib/Doctrine/ORM/EntityRepository.php b/lib/Doctrine/ORM/EntityRepository.php
index 810458cb3..7bc54c847 100644
--- a/lib/Doctrine/ORM/EntityRepository.php
+++ b/lib/Doctrine/ORM/EntityRepository.php
@@ -109,6 +109,10 @@ class EntityRepository implements ObjectRepository
{
// Check identity map first
if ($entity = $this->_em->getUnitOfWork()->tryGetById($id, $this->_class->rootEntityName)) {
+ if (!($entity instanceof $this->_class->name)) {
+ return null;
+ }
+
if ($lockMode != LockMode::NONE) {
$this->_em->lock($entity, $lockMode, $lockVersion);
}
diff --git a/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php b/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
index 571df0eb7..cd7a6da68 100644
--- a/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
+++ b/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
@@ -325,6 +325,8 @@ class ClassMetadataFactory implements ClassMetadataFactoryInterface
if (!$class->discriminatorColumn) {
throw MappingException::missingDiscriminatorColumn($class->name);
}
+ } else if ($class->isMappedSuperclass && (count($class->discriminatorMap) || $class->discriminatorColumn)) {
+ throw MappingException::noInheritanceOnMappedSuperClass($class->name);
}
$this->loadedMetadata[$className] = $class;
diff --git a/lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php b/lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php
index 4cf843d49..f976d0aec 100644
--- a/lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php
+++ b/lib/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php
@@ -389,7 +389,8 @@ class AnnotationDriver implements Driver
// Evaluate @HasLifecycleCallbacks annotation
if (isset($classAnnotations['Doctrine\ORM\Mapping\HasLifecycleCallbacks'])) {
foreach ($class->getMethods() as $method) {
- if ($method->isPublic()) {
+ // filter for the declaring class only, callbacks from parents will already be registered.
+ if ($method->isPublic() && $method->getDeclaringClass()->getName() == $class->name) {
$annotations = $this->_reader->getMethodAnnotations($method);
if (isset($annotations['Doctrine\ORM\Mapping\PrePersist'])) {
diff --git a/lib/Doctrine/ORM/Mapping/Driver/StaticPHPDriver.php b/lib/Doctrine/ORM/Mapping/Driver/StaticPHPDriver.php
index d89b1ed68..916113c1d 100644
--- a/lib/Doctrine/ORM/Mapping/Driver/StaticPHPDriver.php
+++ b/lib/Doctrine/ORM/Mapping/Driver/StaticPHPDriver.php
@@ -1,7 +1,5 @@
- * @author Guilherme Blanco
+ * @author Benjamin Eberlei
+ * @author Guilherme Blanco
* @author Jonathan H. Wage
* @author Roman Borschel
*/
class StaticPHPDriver implements Driver
{
+ /**
+ * Paths of entity directories.
+ *
+ * @var array
+ */
private $_paths = array();
+
+ /**
+ * Map of all class names.
+ *
+ * @var array
+ */
+ private $_classNames;
+
+ /**
+ * The file extension of mapping documents.
+ *
+ * @var string
+ */
+ private $_fileExtension = '.php';
public function __construct($paths)
{
@@ -58,7 +74,7 @@ class StaticPHPDriver implements Driver
{
call_user_func_array(array($className, 'loadMetadata'), array($metadata));
}
-
+
/**
* {@inheritDoc}
* @todo Same code exists in AnnotationDriver, should we re-use it somehow or not worry about it?
@@ -77,13 +93,13 @@ class StaticPHPDriver implements Driver
$includedFiles = array();
foreach ($this->_paths as $path) {
- if ( ! is_dir($path)) {
+ if (!is_dir($path)) {
throw MappingException::fileMappingDriversRequireConfiguredDirectoryPath($path);
}
$iterator = new \RecursiveIteratorIterator(
- new \RecursiveDirectoryIterator($path),
- \RecursiveIteratorIterator::LEAVES_ONLY
+ new \RecursiveDirectoryIterator($path),
+ \RecursiveIteratorIterator::LEAVES_ONLY
);
foreach ($iterator as $file) {
@@ -102,7 +118,7 @@ class StaticPHPDriver implements Driver
foreach ($declared as $className) {
$rc = new \ReflectionClass($className);
$sourceFile = $rc->getFileName();
- if (in_array($sourceFile, $includedFiles) && ! $this->isTransient($className)) {
+ if (in_array($sourceFile, $includedFiles) && !$this->isTransient($className)) {
$classes[] = $className;
}
}
@@ -119,4 +135,4 @@ class StaticPHPDriver implements Driver
{
return method_exists($className, 'loadMetadata') ? false : true;
}
-}
\ No newline at end of file
+}
diff --git a/lib/Doctrine/ORM/Mapping/MappingException.php b/lib/Doctrine/ORM/Mapping/MappingException.php
index b4aaa08e5..5652cf04b 100644
--- a/lib/Doctrine/ORM/Mapping/MappingException.php
+++ b/lib/Doctrine/ORM/Mapping/MappingException.php
@@ -279,4 +279,9 @@ class MappingException extends \Doctrine\ORM\ORMException
{
return new self("Many-to-many or one-to-many associations are not allowed to be identifier in '$className#$field'.");
}
+
+ public static function noInheritanceOnMappedSuperClass($className)
+ {
+ return new self("Its not supported to define inheritance information on a mapped superclass '" . $className . "'.");
+ }
}
\ No newline at end of file
diff --git a/lib/Doctrine/ORM/Persisters/BasicEntityPersister.php b/lib/Doctrine/ORM/Persisters/BasicEntityPersister.php
index 56e91e49a..c9ae5ddd9 100644
--- a/lib/Doctrine/ORM/Persisters/BasicEntityPersister.php
+++ b/lib/Doctrine/ORM/Persisters/BasicEntityPersister.php
@@ -172,6 +172,14 @@ class BasicEntityPersister
$this->_platform = $this->_conn->getDatabasePlatform();
}
+ /**
+ * @return Doctrine\ORM\Mapping\ClassMetadata
+ */
+ public function getClassMetadata()
+ {
+ return $this->_class;
+ }
+
/**
* Adds an entity to the queued insertions.
* The entity remains queued until {@link executeInserts} is invoked.
diff --git a/lib/Doctrine/ORM/Proxy/ProxyFactory.php b/lib/Doctrine/ORM/Proxy/ProxyFactory.php
index 8be75d996..956b06503 100644
--- a/lib/Doctrine/ORM/Proxy/ProxyFactory.php
+++ b/lib/Doctrine/ORM/Proxy/ProxyFactory.php
@@ -130,11 +130,12 @@ class ProxyFactory
{
$methods = $this->_generateMethods($class);
$sleepImpl = $this->_generateSleep($class);
+ $cloneImpl = $class->reflClass->hasMethod('__clone') ? 'parent::__clone();' : ''; // hasMethod() checks case-insensitive
$placeholders = array(
'',
'', '',
- '', ''
+ '', '', ''
);
if(substr($class->name, 0, 1) == "\\") {
@@ -146,7 +147,7 @@ class ProxyFactory
$replacements = array(
$this->_proxyNamespace,
$proxyClassName, $className,
- $methods, $sleepImpl
+ $methods, $sleepImpl, $cloneImpl
);
$file = str_replace($placeholders, $replacements, $file);
@@ -166,7 +167,7 @@ class ProxyFactory
foreach ($class->reflClass->getMethods() as $method) {
/* @var $method ReflectionMethod */
- if ($method->isConstructor() || strtolower($method->getName()) == "__sleep") {
+ if ($method->isConstructor() || in_array(strtolower($method->getName()), array("__sleep", "__clone"))) {
continue;
}
@@ -285,5 +286,22 @@ class extends \ implements \Doctrine\ORM\Proxy\Proxy
{
}
+
+ public function __clone()
+ {
+ if (!$this->__isInitialized__ && $this->_entityPersister) {
+ $this->__isInitialized__ = true;
+ $class = $this->_entityPersister->getClassMetadata();
+ $original = $this->_entityPersister->load($this->_identifier);
+ if ($original === null) {
+ throw new \Doctrine\ORM\EntityNotFoundException();
+ }
+ foreach ($class->reflFields AS $field => $reflProperty) {
+ $reflProperty->setValue($this, $reflProperty->getValue($original));
+ }
+ unset($this->_entityPersister, $this->_identifier);
+ }
+
+ }
}';
}
diff --git a/lib/vendor/Symfony/Component/Console b/lib/vendor/Symfony/Component/Console
new file mode 160000
index 000000000..76280e55c
--- /dev/null
+++ b/lib/vendor/Symfony/Component/Console
@@ -0,0 +1 @@
+Subproject commit 76280e55c7058afcbce623eae571cf1bf7c22b84
diff --git a/lib/vendor/Symfony/Component/Console/Application.php b/lib/vendor/Symfony/Component/Console/Application.php
deleted file mode 100644
index 7db8f1a86..000000000
--- a/lib/vendor/Symfony/Component/Console/Application.php
+++ /dev/null
@@ -1,743 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * An Application is the container for a collection of commands.
- *
- * It is the main entry point of a Console application.
- *
- * This class is optimized for a standard CLI environment.
- *
- * Usage:
- *
- * $app = new Application('myapp', '1.0 (stable)');
- * $app->add(new SimpleCommand());
- * $app->run();
- *
- * @author Fabien Potencier
- */
-class Application
-{
- protected $commands;
- protected $aliases;
- protected $wantHelps = false;
- protected $runningCommand;
- protected $name;
- protected $version;
- protected $catchExceptions;
- protected $autoExit;
- protected $definition;
- protected $helperSet;
-
- /**
- * Constructor.
- *
- * @param string $name The name of the application
- * @param string $version The version of the application
- */
- public function __construct($name = 'UNKNOWN', $version = 'UNKNOWN')
- {
- $this->name = $name;
- $this->version = $version;
- $this->catchExceptions = true;
- $this->autoExit = true;
- $this->commands = array();
- $this->aliases = array();
- $this->helperSet = new HelperSet(array(
- new FormatterHelper(),
- new DialogHelper(),
- ));
-
- $this->add(new HelpCommand());
- $this->add(new ListCommand());
-
- $this->definition = new InputDefinition(array(
- new InputArgument('command', InputArgument::REQUIRED, 'The command to execute'),
-
- new InputOption('--help', '-h', InputOption::VALUE_NONE, 'Display this help message.'),
- new InputOption('--quiet', '-q', InputOption::VALUE_NONE, 'Do not output any message.'),
- new InputOption('--verbose', '-v', InputOption::VALUE_NONE, 'Increase verbosity of messages.'),
- new InputOption('--version', '-V', InputOption::VALUE_NONE, 'Display this program version.'),
- new InputOption('--ansi', '-a', InputOption::VALUE_NONE, 'Force ANSI output.'),
- new InputOption('--no-interaction', '-n', InputOption::VALUE_NONE, 'Do not ask any interactive question.'),
- ));
- }
-
- /**
- * Runs the current application.
- *
- * @param InputInterface $input An Input instance
- * @param OutputInterface $output An Output instance
- *
- * @return integer 0 if everything went fine, or an error code
- *
- * @throws \Exception When doRun returns Exception
- */
- public function run(InputInterface $input = null, OutputInterface $output = null)
- {
- if (null === $input) {
- $input = new ArgvInput();
- }
-
- if (null === $output) {
- $output = new ConsoleOutput();
- }
-
- try {
- $statusCode = $this->doRun($input, $output);
- } catch (\Exception $e) {
- if (!$this->catchExceptions) {
- throw $e;
- }
-
- $this->renderException($e, $output);
- $statusCode = $e->getCode();
-
- $statusCode = is_numeric($statusCode) && $statusCode ? $statusCode : 1;
- }
-
- if ($this->autoExit) {
- if ($statusCode > 255) {
- $statusCode = 255;
- }
- // @codeCoverageIgnoreStart
- exit($statusCode);
- // @codeCoverageIgnoreEnd
- } else {
- return $statusCode;
- }
- }
-
- /**
- * Runs the current application.
- *
- * @param InputInterface $input An Input instance
- * @param OutputInterface $output An Output instance
- *
- * @return integer 0 if everything went fine, or an error code
- */
- public function doRun(InputInterface $input, OutputInterface $output)
- {
- $name = $this->getCommandName($input);
-
- if (true === $input->hasParameterOption(array('--ansi', '-a'))) {
- $output->setDecorated(true);
- }
-
- if (true === $input->hasParameterOption(array('--help', '-h'))) {
- if (!$name) {
- $name = 'help';
- $input = new ArrayInput(array('command' => 'help'));
- } else {
- $this->wantHelps = true;
- }
- }
-
- if (true === $input->hasParameterOption(array('--no-interaction', '-n'))) {
- $input->setInteractive(false);
- }
-
- if (true === $input->hasParameterOption(array('--quiet', '-q'))) {
- $output->setVerbosity(Output::VERBOSITY_QUIET);
- } elseif (true === $input->hasParameterOption(array('--verbose', '-v'))) {
- $output->setVerbosity(Output::VERBOSITY_VERBOSE);
- }
-
- if (true === $input->hasParameterOption(array('--version', '-V'))) {
- $output->writeln($this->getLongVersion());
-
- return 0;
- }
-
- if (!$name) {
- $name = 'list';
- $input = new ArrayInput(array('command' => 'list'));
- }
-
- // the command name MUST be the first element of the input
- $command = $this->find($name);
-
- $this->runningCommand = $command;
- $statusCode = $command->run($input, $output);
- $this->runningCommand = null;
-
- return is_numeric($statusCode) ? $statusCode : 0;
- }
-
- /**
- * Set a helper set to be used with the command.
- *
- * @param HelperSet $helperSet The helper set
- */
- public function setHelperSet(HelperSet $helperSet)
- {
- $this->helperSet = $helperSet;
- }
-
- /**
- * Get the helper set associated with the command
- *
- * @return HelperSet The HelperSet instance associated with this command
- */
- public function getHelperSet()
- {
- return $this->helperSet;
- }
-
- /**
- * Gets the InputDefinition related to this Application.
- *
- * @return InputDefinition The InputDefinition instance
- */
- public function getDefinition()
- {
- return $this->definition;
- }
-
- /**
- * Gets the help message.
- *
- * @return string A help message.
- */
- public function getHelp()
- {
- $messages = array(
- $this->getLongVersion(),
- '',
- 'Usage:',
- sprintf(" [options] command [arguments]\n"),
- 'Options:',
- );
-
- foreach ($this->definition->getOptions() as $option) {
- $messages[] = sprintf(' %-29s %s %s',
- '--'.$option->getName().'',
- $option->getShortcut() ? '-'.$option->getShortcut().'' : ' ',
- $option->getDescription()
- );
- }
-
- return implode("\n", $messages);
- }
-
- /**
- * Sets whether to catch exceptions or not during commands execution.
- *
- * @param Boolean $boolean Whether to catch exceptions or not during commands execution
- */
- public function setCatchExceptions($boolean)
- {
- $this->catchExceptions = (Boolean) $boolean;
- }
-
- /**
- * Sets whether to automatically exit after a command execution or not.
- *
- * @param Boolean $boolean Whether to automatically exit after a command execution or not
- */
- public function setAutoExit($boolean)
- {
- $this->autoExit = (Boolean) $boolean;
- }
-
- /**
- * Gets the name of the application.
- *
- * @return string The application name
- */
- public function getName()
- {
- return $this->name;
- }
-
- /**
- * Sets the application name.
- *
- * @param string $name The application name
- */
- public function setName($name)
- {
- $this->name = $name;
- }
-
- /**
- * Gets the application version.
- *
- * @return string The application version
- */
- public function getVersion()
- {
- return $this->version;
- }
-
- /**
- * Sets the application version.
- *
- * @param string $version The application version
- */
- public function setVersion($version)
- {
- $this->version = $version;
- }
-
- /**
- * Returns the long version of the application.
- *
- * @return string The long application version
- */
- public function getLongVersion()
- {
- if ('UNKNOWN' !== $this->getName() && 'UNKNOWN' !== $this->getVersion()) {
- return sprintf('%s version %s', $this->getName(), $this->getVersion());
- } else {
- return 'Console Tool';
- }
- }
-
- /**
- * Registers a new command.
- *
- * @param string $name The command name
- *
- * @return Command The newly created command
- */
- public function register($name)
- {
- return $this->add(new Command($name));
- }
-
- /**
- * Adds an array of command objects.
- *
- * @param Command[] $commands An array of commands
- */
- public function addCommands(array $commands)
- {
- foreach ($commands as $command) {
- $this->add($command);
- }
- }
-
- /**
- * Adds a command object.
- *
- * If a command with the same name already exists, it will be overridden.
- *
- * @param Command $command A Command object
- *
- * @return Command The registered command
- */
- public function add(Command $command)
- {
- $command->setApplication($this);
-
- $this->commands[$command->getFullName()] = $command;
-
- foreach ($command->getAliases() as $alias) {
- $this->aliases[$alias] = $command;
- }
-
- return $command;
- }
-
- /**
- * Returns a registered command by name or alias.
- *
- * @param string $name The command name or alias
- *
- * @return Command A Command object
- *
- * @throws \InvalidArgumentException When command name given does not exist
- */
- public function get($name)
- {
- if (!isset($this->commands[$name]) && !isset($this->aliases[$name])) {
- throw new \InvalidArgumentException(sprintf('The command "%s" does not exist.', $name));
- }
-
- $command = isset($this->commands[$name]) ? $this->commands[$name] : $this->aliases[$name];
-
- if ($this->wantHelps) {
- $this->wantHelps = false;
-
- $helpCommand = $this->get('help');
- $helpCommand->setCommand($command);
-
- return $helpCommand;
- }
-
- return $command;
- }
-
- /**
- * Returns true if the command exists, false otherwise
- *
- * @param string $name The command name or alias
- *
- * @return Boolean true if the command exists, false otherwise
- */
- public function has($name)
- {
- return isset($this->commands[$name]) || isset($this->aliases[$name]);
- }
-
- /**
- * Returns an array of all unique namespaces used by currently registered commands.
- *
- * It does not returns the global namespace which always exists.
- *
- * @return array An array of namespaces
- */
- public function getNamespaces()
- {
- $namespaces = array();
- foreach ($this->commands as $command) {
- if ($command->getNamespace()) {
- $namespaces[$command->getNamespace()] = true;
- }
- }
-
- return array_keys($namespaces);
- }
-
- /**
- * Finds a registered namespace by a name or an abbreviation.
- *
- * @return string A registered namespace
- *
- * @throws \InvalidArgumentException When namespace is incorrect or ambiguous
- */
- public function findNamespace($namespace)
- {
- $abbrevs = static::getAbbreviations($this->getNamespaces());
-
- if (!isset($abbrevs[$namespace])) {
- throw new \InvalidArgumentException(sprintf('There are no commands defined in the "%s" namespace.', $namespace));
- }
-
- if (count($abbrevs[$namespace]) > 1) {
- throw new \InvalidArgumentException(sprintf('The namespace "%s" is ambiguous (%s).', $namespace, $this->getAbbreviationSuggestions($abbrevs[$namespace])));
- }
-
- return $abbrevs[$namespace][0];
- }
-
- /**
- * Finds a command by name or alias.
- *
- * Contrary to get, this command tries to find the best
- * match if you give it an abbreviation of a name or alias.
- *
- * @param string $name A command name or a command alias
- *
- * @return Command A Command instance
- *
- * @throws \InvalidArgumentException When command name is incorrect or ambiguous
- */
- public function find($name)
- {
- // namespace
- $namespace = '';
- if (false !== $pos = strrpos($name, ':')) {
- $namespace = $this->findNamespace(substr($name, 0, $pos));
- $name = substr($name, $pos + 1);
- }
-
- $fullName = $namespace ? $namespace.':'.$name : $name;
-
- // name
- $commands = array();
- foreach ($this->commands as $command) {
- if ($command->getNamespace() == $namespace) {
- $commands[] = $command->getName();
- }
- }
-
- $abbrevs = static::getAbbreviations($commands);
- if (isset($abbrevs[$name]) && 1 == count($abbrevs[$name])) {
- return $this->get($namespace ? $namespace.':'.$abbrevs[$name][0] : $abbrevs[$name][0]);
- }
-
- if (isset($abbrevs[$name]) && count($abbrevs[$name]) > 1) {
- $suggestions = $this->getAbbreviationSuggestions(array_map(function ($command) use ($namespace) { return $namespace.':'.$command; }, $abbrevs[$name]));
-
- throw new \InvalidArgumentException(sprintf('Command "%s" is ambiguous (%s).', $fullName, $suggestions));
- }
-
- // aliases
- $abbrevs = static::getAbbreviations(array_keys($this->aliases));
- if (!isset($abbrevs[$fullName])) {
- throw new \InvalidArgumentException(sprintf('Command "%s" is not defined.', $fullName));
- }
-
- if (count($abbrevs[$fullName]) > 1) {
- throw new \InvalidArgumentException(sprintf('Command "%s" is ambiguous (%s).', $fullName, $this->getAbbreviationSuggestions($abbrevs[$fullName])));
- }
-
- return $this->get($abbrevs[$fullName][0]);
- }
-
- /**
- * Gets the commands (registered in the given namespace if provided).
- *
- * The array keys are the full names and the values the command instances.
- *
- * @param string $namespace A namespace name
- *
- * @return array An array of Command instances
- */
- public function all($namespace = null)
- {
- if (null === $namespace) {
- return $this->commands;
- }
-
- $commands = array();
- foreach ($this->commands as $name => $command) {
- if ($namespace === $command->getNamespace()) {
- $commands[$name] = $command;
- }
- }
-
- return $commands;
- }
-
- /**
- * Returns an array of possible abbreviations given a set of names.
- *
- * @param array $names An array of names
- *
- * @return array An array of abbreviations
- */
- static public function getAbbreviations($names)
- {
- $abbrevs = array();
- foreach ($names as $name) {
- for ($len = strlen($name) - 1; $len > 0; --$len) {
- $abbrev = substr($name, 0, $len);
- if (!isset($abbrevs[$abbrev])) {
- $abbrevs[$abbrev] = array($name);
- } else {
- $abbrevs[$abbrev][] = $name;
- }
- }
- }
-
- // Non-abbreviations always get entered, even if they aren't unique
- foreach ($names as $name) {
- $abbrevs[$name] = array($name);
- }
-
- return $abbrevs;
- }
-
- /**
- * Returns a text representation of the Application.
- *
- * @param string $namespace An optional namespace name
- *
- * @return string A string representing the Application
- */
- public function asText($namespace = null)
- {
- $commands = $namespace ? $this->all($this->findNamespace($namespace)) : $this->commands;
-
- $messages = array($this->getHelp(), '');
- if ($namespace) {
- $messages[] = sprintf("Available commands for the \"%s\" namespace:", $namespace);
- } else {
- $messages[] = 'Available commands:';
- }
-
- $width = 0;
- foreach ($commands as $command) {
- $width = strlen($command->getName()) > $width ? strlen($command->getName()) : $width;
- }
- $width += 2;
-
- // add commands by namespace
- foreach ($this->sortCommands($commands) as $space => $commands) {
- if (!$namespace && '_global' !== $space) {
- $messages[] = ''.$space.'';
- }
-
- foreach ($commands as $command) {
- $aliases = $command->getAliases() ? ' ('.implode(', ', $command->getAliases()).')' : '';
-
- $messages[] = sprintf(" %-${width}s %s%s", ($command->getNamespace() ? ':' : '').$command->getName(), $command->getDescription(), $aliases);
- }
- }
-
- return implode("\n", $messages);
- }
-
- /**
- * Returns an XML representation of the Application.
- *
- * @param string $namespace An optional namespace name
- * @param Boolean $asDom Whether to return a DOM or an XML string
- *
- * @return string|DOMDocument An XML string representing the Application
- */
- public function asXml($namespace = null, $asDom = false)
- {
- $commands = $namespace ? $this->all($this->findNamespace($namespace)) : $this->commands;
-
- $dom = new \DOMDocument('1.0', 'UTF-8');
- $dom->formatOutput = true;
- $dom->appendChild($xml = $dom->createElement('symfony'));
-
- $xml->appendChild($commandsXML = $dom->createElement('commands'));
-
- if ($namespace) {
- $commandsXML->setAttribute('namespace', $namespace);
- } else {
- $xml->appendChild($namespacesXML = $dom->createElement('namespaces'));
- }
-
- // add commands by namespace
- foreach ($this->sortCommands($commands) as $space => $commands) {
- if (!$namespace) {
- $namespacesXML->appendChild($namespaceArrayXML = $dom->createElement('namespace'));
- $namespaceArrayXML->setAttribute('id', $space);
- }
-
- foreach ($commands as $command) {
- if (!$namespace) {
- $namespaceArrayXML->appendChild($commandXML = $dom->createElement('command'));
- $commandXML->appendChild($dom->createTextNode($command->getName()));
- }
-
- $node = $command->asXml(true)->getElementsByTagName('command')->item(0);
- $node = $dom->importNode($node, true);
-
- $commandsXML->appendChild($node);
- }
- }
-
- return $asDom ? $dom : $dom->saveXml();
- }
-
- /**
- * Renders a catched exception.
- *
- * @param Exception $e An exception instance
- * @param OutputInterface $output An OutputInterface instance
- */
- public function renderException($e, $output)
- {
- $strlen = function ($string)
- {
- return function_exists('mb_strlen') ? mb_strlen($string) : strlen($string);
- };
-
- $title = sprintf(' [%s] ', get_class($e));
- $len = $strlen($title);
- $lines = array();
- foreach (explode("\n", $e->getMessage()) as $line) {
- $lines[] = sprintf(' %s ', $line);
- $len = max($strlen($line) + 4, $len);
- }
-
- $messages = array(str_repeat(' ', $len), $title.str_repeat(' ', $len - $strlen($title)));
-
- foreach ($lines as $line) {
- $messages[] = $line.str_repeat(' ', $len - $strlen($line));
- }
-
- $messages[] = str_repeat(' ', $len);
-
- $output->writeln("\n");
- foreach ($messages as $message) {
- $output->writeln(''.$message.'');
- }
- $output->writeln("\n");
-
- if (null !== $this->runningCommand) {
- $output->writeln(sprintf('%s', sprintf($this->runningCommand->getSynopsis(), $this->getName())));
- $output->writeln("\n");
- }
-
- if (Output::VERBOSITY_VERBOSE === $output->getVerbosity()) {
- $output->writeln('Exception trace:');
-
- // exception related properties
- $trace = $e->getTrace();
- array_unshift($trace, array(
- 'function' => '',
- 'file' => $e->getFile() != null ? $e->getFile() : 'n/a',
- 'line' => $e->getLine() != null ? $e->getLine() : 'n/a',
- 'args' => array(),
- ));
-
- for ($i = 0, $count = count($trace); $i < $count; $i++) {
- $class = isset($trace[$i]['class']) ? $trace[$i]['class'] : '';
- $type = isset($trace[$i]['type']) ? $trace[$i]['type'] : '';
- $function = $trace[$i]['function'];
- $file = isset($trace[$i]['file']) ? $trace[$i]['file'] : 'n/a';
- $line = isset($trace[$i]['line']) ? $trace[$i]['line'] : 'n/a';
-
- $output->writeln(sprintf(' %s%s%s() at %s:%s', $class, $type, $function, $file, $line));
- }
-
- $output->writeln("\n");
- }
- }
-
- protected function getCommandName(InputInterface $input)
- {
- return $input->getFirstArgument('command');
- }
-
- protected function sortCommands($commands)
- {
- $namespacedCommands = array();
- foreach ($commands as $name => $command) {
- $key = $command->getNamespace() ? $command->getNamespace() : '_global';
-
- if (!isset($namespacedCommands[$key])) {
- $namespacedCommands[$key] = array();
- }
-
- $namespacedCommands[$key][$name] = $command;
- }
- ksort($namespacedCommands);
-
- foreach ($namespacedCommands as $name => &$commands) {
- ksort($commands);
- }
-
- return $namespacedCommands;
- }
-
- protected function getAbbreviationSuggestions($abbrevs)
- {
- return sprintf('%s, %s%s', $abbrevs[0], $abbrevs[1], count($abbrevs) > 2 ? sprintf(' and %d more', count($abbrevs) - 2) : '');
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Command/Command.php b/lib/vendor/Symfony/Component/Console/Command/Command.php
deleted file mode 100644
index 3777d9617..000000000
--- a/lib/vendor/Symfony/Component/Console/Command/Command.php
+++ /dev/null
@@ -1,512 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * Base class for all commands.
- *
- * @author Fabien Potencier
- */
-class Command
-{
- protected $name;
- protected $namespace;
- protected $aliases;
- protected $definition;
- protected $help;
- protected $application;
- protected $description;
- protected $ignoreValidationErrors;
- protected $applicationDefinitionMerged;
- protected $code;
-
- /**
- * Constructor.
- *
- * @param string $name The name of the command
- *
- * @throws \LogicException When the command name is empty
- */
- public function __construct($name = null)
- {
- $this->definition = new InputDefinition();
- $this->ignoreValidationErrors = false;
- $this->applicationDefinitionMerged = false;
- $this->aliases = array();
-
- if (null !== $name) {
- $this->setName($name);
- }
-
- $this->configure();
-
- if (!$this->name) {
- throw new \LogicException('The command name cannot be empty.');
- }
- }
-
- /**
- * Sets the application instance for this command.
- *
- * @param Application $application An Application instance
- */
- public function setApplication(Application $application = null)
- {
- $this->application = $application;
- }
-
- /**
- * Configures the current command.
- */
- protected function configure()
- {
- }
-
- /**
- * Executes the current command.
- *
- * @param InputInterface $input An InputInterface instance
- * @param OutputInterface $output An OutputInterface instance
- *
- * @return integer 0 if everything went fine, or an error code
- *
- * @throws \LogicException When this abstract class is not implemented
- */
- protected function execute(InputInterface $input, OutputInterface $output)
- {
- throw new \LogicException('You must override the execute() method in the concrete command class.');
- }
-
- /**
- * Interacts with the user.
- *
- * @param InputInterface $input An InputInterface instance
- * @param OutputInterface $output An OutputInterface instance
- */
- protected function interact(InputInterface $input, OutputInterface $output)
- {
- }
-
- /**
- * Initializes the command just after the input has been validated.
- *
- * This is mainly useful when a lot of commands extends one main command
- * where some things need to be initialized based on the input arguments and options.
- *
- * @param InputInterface $input An InputInterface instance
- * @param OutputInterface $output An OutputInterface instance
- */
- protected function initialize(InputInterface $input, OutputInterface $output)
- {
- }
-
- /**
- * Runs the command.
- *
- * @param InputInterface $input An InputInterface instance
- * @param OutputInterface $output An OutputInterface instance
- */
- public function run(InputInterface $input, OutputInterface $output)
- {
- // add the application arguments and options
- $this->mergeApplicationDefinition();
-
- // bind the input against the command specific arguments/options
- try {
- $input->bind($this->definition);
- } catch (\Exception $e) {
- if (!$this->ignoreValidationErrors) {
- throw $e;
- }
- }
-
- $this->initialize($input, $output);
-
- if ($input->isInteractive()) {
- $this->interact($input, $output);
- }
-
- $input->validate();
-
- if ($this->code) {
- return call_user_func($this->code, $input, $output);
- } else {
- return $this->execute($input, $output);
- }
- }
-
- /**
- * Sets the code to execute when running this command.
- *
- * @param \Closure $code A \Closure
- *
- * @return Command The current instance
- */
- public function setCode(\Closure $code)
- {
- $this->code = $code;
-
- return $this;
- }
-
- /**
- * Merges the application definition with the command definition.
- */
- protected function mergeApplicationDefinition()
- {
- if (null === $this->application || true === $this->applicationDefinitionMerged) {
- return;
- }
-
- $this->definition->setArguments(array_merge(
- $this->application->getDefinition()->getArguments(),
- $this->definition->getArguments()
- ));
-
- $this->definition->addOptions($this->application->getDefinition()->getOptions());
-
- $this->applicationDefinitionMerged = true;
- }
-
- /**
- * Sets an array of argument and option instances.
- *
- * @param array|Definition $definition An array of argument and option instances or a definition instance
- *
- * @return Command The current instance
- */
- public function setDefinition($definition)
- {
- if ($definition instanceof InputDefinition) {
- $this->definition = $definition;
- } else {
- $this->definition->setDefinition($definition);
- }
-
- $this->applicationDefinitionMerged = false;
-
- return $this;
- }
-
- /**
- * Gets the InputDefinition attached to this Command.
- *
- * @return InputDefinition An InputDefinition instance
- */
- public function getDefinition()
- {
- return $this->definition;
- }
-
- /**
- * Adds an argument.
- *
- * @param string $name The argument name
- * @param integer $mode The argument mode: InputArgument::REQUIRED or InputArgument::OPTIONAL
- * @param string $description A description text
- * @param mixed $default The default value (for InputArgument::OPTIONAL mode only)
- *
- * @return Command The current instance
- */
- public function addArgument($name, $mode = null, $description = '', $default = null)
- {
- $this->definition->addArgument(new InputArgument($name, $mode, $description, $default));
-
- return $this;
- }
-
- /**
- * Adds an option.
- *
- * @param string $name The option name
- * @param string $shortcut The shortcut (can be null)
- * @param integer $mode The option mode: One of the InputOption::VALUE_* constants
- * @param string $description A description text
- * @param mixed $default The default value (must be null for InputOption::VALUE_REQUIRED or self::VALUE_NONE)
- *
- * @return Command The current instance
- */
- public function addOption($name, $shortcut = null, $mode = null, $description = '', $default = null)
- {
- $this->definition->addOption(new InputOption($name, $shortcut, $mode, $description, $default));
-
- return $this;
- }
-
- /**
- * Sets the name of the command.
- *
- * This method can set both the namespace and the name if
- * you separate them by a colon (:)
- *
- * $command->setName('foo:bar');
- *
- * @param string $name The command name
- *
- * @return Command The current instance
- *
- * @throws \InvalidArgumentException When command name given is empty
- */
- public function setName($name)
- {
- if (false !== $pos = strrpos($name, ':')) {
- $namespace = substr($name, 0, $pos);
- $name = substr($name, $pos + 1);
- } else {
- $namespace = $this->namespace;
- }
-
- if (!$name) {
- throw new \InvalidArgumentException('A command name cannot be empty.');
- }
-
- $this->namespace = $namespace;
- $this->name = $name;
-
- return $this;
- }
-
- /**
- * Returns the command namespace.
- *
- * @return string The command namespace
- */
- public function getNamespace()
- {
- return $this->namespace;
- }
-
- /**
- * Returns the command name
- *
- * @return string The command name
- */
- public function getName()
- {
- return $this->name;
- }
-
- /**
- * Returns the fully qualified command name.
- *
- * @return string The fully qualified command name
- */
- public function getFullName()
- {
- return $this->getNamespace() ? $this->getNamespace().':'.$this->getName() : $this->getName();
- }
-
- /**
- * Sets the description for the command.
- *
- * @param string $description The description for the command
- *
- * @return Command The current instance
- */
- public function setDescription($description)
- {
- $this->description = $description;
-
- return $this;
- }
-
- /**
- * Returns the description for the command.
- *
- * @return string The description for the command
- */
- public function getDescription()
- {
- return $this->description;
- }
-
- /**
- * Sets the help for the command.
- *
- * @param string $help The help for the command
- *
- * @return Command The current instance
- */
- public function setHelp($help)
- {
- $this->help = $help;
-
- return $this;
- }
-
- /**
- * Returns the help for the command.
- *
- * @return string The help for the command
- */
- public function getHelp()
- {
- return $this->help;
- }
-
- /**
- * Returns the processed help for the command replacing the %command.name% and
- * %command.full_name% patterns with the real values dynamically.
- *
- * @return string The processed help for the command
- */
- public function getProcessedHelp()
- {
- $name = $this->namespace.':'.$this->name;
-
- $placeholders = array(
- '%command.name%',
- '%command.full_name%'
- );
- $replacements = array(
- $name,
- $_SERVER['PHP_SELF'].' '.$name
- );
-
- return str_replace($placeholders, $replacements, $this->getHelp());
- }
-
- /**
- * Sets the aliases for the command.
- *
- * @param array $aliases An array of aliases for the command
- *
- * @return Command The current instance
- */
- public function setAliases($aliases)
- {
- $this->aliases = $aliases;
-
- return $this;
- }
-
- /**
- * Returns the aliases for the command.
- *
- * @return array An array of aliases for the command
- */
- public function getAliases()
- {
- return $this->aliases;
- }
-
- /**
- * Returns the synopsis for the command.
- *
- * @return string The synopsis
- */
- public function getSynopsis()
- {
- return sprintf('%s %s', $this->getFullName(), $this->definition->getSynopsis());
- }
-
- /**
- * Gets a helper instance by name.
- *
- * @param string $name The helper name
- *
- * @return mixed The helper value
- *
- * @throws \InvalidArgumentException if the helper is not defined
- */
- protected function getHelper($name)
- {
- return $this->application->getHelperSet()->get($name);
- }
-
- /**
- * Gets a helper instance by name.
- *
- * @param string $name The helper name
- *
- * @return mixed The helper value
- *
- * @throws \InvalidArgumentException if the helper is not defined
- */
- public function __get($name)
- {
- return $this->application->getHelperSet()->get($name);
- }
-
- /**
- * Returns a text representation of the command.
- *
- * @return string A string representing the command
- */
- public function asText()
- {
- $messages = array(
- 'Usage:',
- ' '.$this->getSynopsis(),
- '',
- );
-
- if ($this->getAliases()) {
- $messages[] = 'Aliases: '.implode(', ', $this->getAliases()).'';
- }
-
- $messages[] = $this->definition->asText();
-
- if ($help = $this->getProcessedHelp()) {
- $messages[] = 'Help:';
- $messages[] = ' '.implode("\n ", explode("\n", $help))."\n";
- }
-
- return implode("\n", $messages);
- }
-
- /**
- * Returns an XML representation of the command.
- *
- * @param Boolean $asDom Whether to return a DOM or an XML string
- *
- * @return string|DOMDocument An XML string representing the command
- */
- public function asXml($asDom = false)
- {
- $dom = new \DOMDocument('1.0', 'UTF-8');
- $dom->formatOutput = true;
- $dom->appendChild($commandXML = $dom->createElement('command'));
- $commandXML->setAttribute('id', $this->getFullName());
- $commandXML->setAttribute('namespace', $this->getNamespace() ? $this->getNamespace() : '_global');
- $commandXML->setAttribute('name', $this->getName());
-
- $commandXML->appendChild($usageXML = $dom->createElement('usage'));
- $usageXML->appendChild($dom->createTextNode(sprintf($this->getSynopsis(), '')));
-
- $commandXML->appendChild($descriptionXML = $dom->createElement('description'));
- $descriptionXML->appendChild($dom->createTextNode(implode("\n ", explode("\n", $this->getDescription()))));
-
- $commandXML->appendChild($helpXML = $dom->createElement('help'));
- $help = $this->help;
- $helpXML->appendChild($dom->createTextNode(implode("\n ", explode("\n", $help))));
-
- $commandXML->appendChild($aliasesXML = $dom->createElement('aliases'));
- foreach ($this->getAliases() as $alias) {
- $aliasesXML->appendChild($aliasXML = $dom->createElement('alias'));
- $aliasXML->appendChild($dom->createTextNode($alias));
- }
-
- $definition = $this->definition->asXml(true);
- $commandXML->appendChild($dom->importNode($definition->getElementsByTagName('arguments')->item(0), true));
- $commandXML->appendChild($dom->importNode($definition->getElementsByTagName('options')->item(0), true));
-
- return $asDom ? $dom : $dom->saveXml();
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Command/HelpCommand.php b/lib/vendor/Symfony/Component/Console/Command/HelpCommand.php
deleted file mode 100644
index 5504832d8..000000000
--- a/lib/vendor/Symfony/Component/Console/Command/HelpCommand.php
+++ /dev/null
@@ -1,77 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * HelpCommand displays the help for a given command.
- *
- * @author Fabien Potencier
- */
-class HelpCommand extends Command
-{
- protected $command;
-
- /**
- * @see Command
- */
- protected function configure()
- {
- $this->ignoreValidationErrors = true;
-
- $this
- ->setDefinition(array(
- new InputArgument('command_name', InputArgument::OPTIONAL, 'The command name', 'help'),
- new InputOption('xml', null, InputOption::VALUE_NONE, 'To output help as XML'),
- ))
- ->setName('help')
- ->setAliases(array('?'))
- ->setDescription('Displays help for a command')
- ->setHelp(<<help command displays help for a given command:
-
- ./symfony help list
-
-You can also output the help as XML by using the --xml option:
-
- ./symfony help --xml list
-EOF
- );
- }
-
- public function setCommand(Command $command)
- {
- $this->command = $command;
- }
-
- /**
- * @see Command
- */
- protected function execute(InputInterface $input, OutputInterface $output)
- {
- if (null === $this->command) {
- $this->command = $this->application->get($input->getArgument('command_name'));
- }
-
- if ($input->getOption('xml')) {
- $output->writeln($this->command->asXml(), Output::OUTPUT_RAW);
- } else {
- $output->writeln($this->command->asText());
- }
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Command/ListCommand.php b/lib/vendor/Symfony/Component/Console/Command/ListCommand.php
deleted file mode 100644
index a1f77e97c..000000000
--- a/lib/vendor/Symfony/Component/Console/Command/ListCommand.php
+++ /dev/null
@@ -1,67 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * ListCommand displays the list of all available commands for the application.
- *
- * @author Fabien Potencier
- */
-class ListCommand extends Command
-{
- /**
- * @see Command
- */
- protected function configure()
- {
- $this
- ->setDefinition(array(
- new InputArgument('namespace', InputArgument::OPTIONAL, 'The namespace name'),
- new InputOption('xml', null, InputOption::VALUE_NONE, 'To output help as XML'),
- ))
- ->setName('list')
- ->setDescription('Lists commands')
- ->setHelp(<<list command lists all commands:
-
- ./symfony list
-
-You can also display the commands for a specific namespace:
-
- ./symfony list test
-
-You can also output the information as XML by using the --xml option:
-
- ./symfony list --xml
-EOF
- );
- }
-
- /**
- * @see Command
- */
- protected function execute(InputInterface $input, OutputInterface $output)
- {
- if ($input->getOption('xml')) {
- $output->writeln($this->application->asXml($input->getArgument('namespace')), Output::OUTPUT_RAW);
- } else {
- $output->writeln($this->application->asText($input->getArgument('namespace')));
- }
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Helper/DialogHelper.php b/lib/vendor/Symfony/Component/Console/Helper/DialogHelper.php
deleted file mode 100644
index 25c2b04a7..000000000
--- a/lib/vendor/Symfony/Component/Console/Helper/DialogHelper.php
+++ /dev/null
@@ -1,110 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * The Dialog class provides helpers to interact with the user.
- *
- * @author Fabien Potencier
- */
-class DialogHelper extends Helper
-{
- /**
- * Asks a question to the user.
- *
- * @param OutputInterface $output
- * @param string|array $question The question to ask
- * @param string $default The default answer if none is given by the user
- *
- * @return string The user answer
- */
- public function ask(OutputInterface $output, $question, $default = null)
- {
- // @codeCoverageIgnoreStart
- $output->writeln($question);
-
- $ret = trim(fgets(STDIN));
-
- return $ret ? $ret : $default;
- // @codeCoverageIgnoreEnd
- }
-
- /**
- * Asks a confirmation to the user.
- *
- * The question will be asked until the user answer by nothing, yes, or no.
- *
- * @param OutputInterface $output
- * @param string|array $question The question to ask
- * @param Boolean $default The default answer if the user enters nothing
- *
- * @return Boolean true if the user has confirmed, false otherwise
- */
- public function askConfirmation(OutputInterface $output, $question, $default = true)
- {
- // @codeCoverageIgnoreStart
- $answer = 'z';
- while ($answer && !in_array(strtolower($answer[0]), array('y', 'n'))) {
- $answer = $this->ask($output, $question);
- }
-
- if (false === $default) {
- return $answer && 'y' == strtolower($answer[0]);
- } else {
- return !$answer || 'y' == strtolower($answer[0]);
- }
- // @codeCoverageIgnoreEnd
- }
-
- /**
- * Asks for a value and validates the response.
- *
- * @param OutputInterface $output
- * @param string|array $question
- * @param Closure $validator
- * @param integer $attempts Max number of times to ask before giving up (false by default, which means infinite)
- *
- * @return mixed
- *
- * @throws \Exception When any of the validator returns an error
- */
- public function askAndValidate(OutputInterface $output, $question, \Closure $validator, $attempts = false)
- {
- // @codeCoverageIgnoreStart
- $error = null;
- while (false === $attempts || $attempts--) {
- if (null !== $error) {
- $output->writeln($this->getHelperSet()->get('formatter')->formatBlock($error->getMessage(), 'error'));
- }
-
- $value = $this->ask($output, $question, null);
-
- try {
- return $validator($value);
- } catch (\Exception $error) {
- }
- }
-
- throw $error;
- // @codeCoverageIgnoreEnd
- }
-
- /**
- * Returns the helper's canonical name
- */
- public function getName()
- {
- return 'dialog';
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Helper/FormatterHelper.php b/lib/vendor/Symfony/Component/Console/Helper/FormatterHelper.php
deleted file mode 100644
index baa2bc1a9..000000000
--- a/lib/vendor/Symfony/Component/Console/Helper/FormatterHelper.php
+++ /dev/null
@@ -1,82 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * The Formatter class provides helpers to format messages.
- *
- * @author Fabien Potencier
- */
-class FormatterHelper extends Helper
-{
- /**
- * Formats a message within a section.
- *
- * @param string $section The section name
- * @param string $message The message
- * @param string $style The style to apply to the section
- */
- public function formatSection($section, $message, $style = 'info')
- {
- return sprintf('<%s>[%s]%s> %s', $style, $section, $style, $message);
- }
-
- /**
- * Formats a message as a block of text.
- *
- * @param string|array $messages The message to write in the block
- * @param string $style The style to apply to the whole block
- * @param Boolean $large Whether to return a large block
- *
- * @return string The formatter message
- */
- public function formatBlock($messages, $style, $large = false)
- {
- if (!is_array($messages)) {
- $messages = array($messages);
- }
-
- $len = 0;
- $lines = array();
- foreach ($messages as $message) {
- $lines[] = sprintf($large ? ' %s ' : ' %s ', $message);
- $len = max($this->strlen($message) + ($large ? 4 : 2), $len);
- }
-
- $messages = $large ? array(str_repeat(' ', $len)) : array();
- foreach ($lines as $line) {
- $messages[] = $line.str_repeat(' ', $len - $this->strlen($line));
- }
- if ($large) {
- $messages[] = str_repeat(' ', $len);
- }
-
- foreach ($messages as &$message) {
- $message = sprintf('<%s>%s%s>', $style, $message, $style);
- }
-
- return implode("\n", $messages);
- }
-
- protected function strlen($string)
- {
- return function_exists('mb_strlen') ? mb_strlen($string) : strlen($string);
- }
-
- /**
- * Returns the helper's canonical name
- */
- public function getName()
- {
- return 'formatter';
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Helper/Helper.php b/lib/vendor/Symfony/Component/Console/Helper/Helper.php
deleted file mode 100644
index 28a8d991f..000000000
--- a/lib/vendor/Symfony/Component/Console/Helper/Helper.php
+++ /dev/null
@@ -1,42 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * Helper is the base class for all helper classes.
- *
- * @author Fabien Potencier
- */
-abstract class Helper implements HelperInterface
-{
- protected $helperSet = null;
-
- /**
- * Sets the helper set associated with this helper.
- *
- * @param HelperSet $helperSet A HelperSet instance
- */
- public function setHelperSet(HelperSet $helperSet = null)
- {
- $this->helperSet = $helperSet;
- }
-
- /**
- * Gets the helper set associated with this helper.
- *
- * @return HelperSet A HelperSet instance
- */
- public function getHelperSet()
- {
- return $this->helperSet;
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Helper/HelperInterface.php b/lib/vendor/Symfony/Component/Console/Helper/HelperInterface.php
deleted file mode 100644
index 7430e0713..000000000
--- a/lib/vendor/Symfony/Component/Console/Helper/HelperInterface.php
+++ /dev/null
@@ -1,41 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * HelperInterface is the interface all helpers must implement.
- *
- * @author Fabien Potencier
- */
-interface HelperInterface
-{
- /**
- * Sets the helper set associated with this helper.
- *
- * @param HelperSet $helperSet A HelperSet instance
- */
- function setHelperSet(HelperSet $helperSet = null);
-
- /**
- * Gets the helper set associated with this helper.
- *
- * @return HelperSet A HelperSet instance
- */
- function getHelperSet();
-
- /**
- * Returns the canonical name of this helper.
- *
- * @return string The canonical name
- */
- function getName();
-}
diff --git a/lib/vendor/Symfony/Component/Console/Helper/HelperSet.php b/lib/vendor/Symfony/Component/Console/Helper/HelperSet.php
deleted file mode 100644
index b8b412f79..000000000
--- a/lib/vendor/Symfony/Component/Console/Helper/HelperSet.php
+++ /dev/null
@@ -1,102 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * HelperSet represents a set of helpers to be used with a command.
- *
- * @author Fabien Potencier
- */
-class HelperSet
-{
- protected $helpers;
- protected $command;
-
- /**
- * @param Helper[] $helpers An array of helper.
- */
- public function __construct(array $helpers = array())
- {
- $this->helpers = array();
- foreach ($helpers as $alias => $helper) {
- $this->set($helper, is_int($alias) ? null : $alias);
- }
- }
-
- /**
- * Sets a helper.
- *
- * @param HelperInterface $value The helper instance
- * @param string $alias An alias
- */
- public function set(HelperInterface $helper, $alias = null)
- {
- $this->helpers[$helper->getName()] = $helper;
- if (null !== $alias) {
- $this->helpers[$alias] = $helper;
- }
-
- $helper->setHelperSet($this);
- }
-
- /**
- * Returns true if the helper if defined.
- *
- * @param string $name The helper name
- *
- * @return Boolean true if the helper is defined, false otherwise
- */
- public function has($name)
- {
- return isset($this->helpers[$name]);
- }
-
- /**
- * Gets a helper value.
- *
- * @param string $name The helper name
- *
- * @return HelperInterface The helper instance
- *
- * @throws \InvalidArgumentException if the helper is not defined
- */
- public function get($name)
- {
- if (!$this->has($name)) {
- throw new \InvalidArgumentException(sprintf('The helper "%s" is not defined.', $name));
- }
-
- return $this->helpers[$name];
- }
-
- /**
- * Sets the command associated with this helper set.
- *
- * @param Command $command A Command instance
- */
- public function setCommand(Command $command = null)
- {
- $this->command = $command;
- }
-
- /**
- * Gets the command associated with this helper set.
- *
- * @return Command A Command instance
- */
- public function getCommand()
- {
- return $this->command;
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Input/ArgvInput.php b/lib/vendor/Symfony/Component/Console/Input/ArgvInput.php
deleted file mode 100644
index a1ca7a26a..000000000
--- a/lib/vendor/Symfony/Component/Console/Input/ArgvInput.php
+++ /dev/null
@@ -1,255 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * ArgvInput represents an input coming from the CLI arguments.
- *
- * Usage:
- *
- * $input = new ArgvInput();
- *
- * By default, the `$_SERVER['argv']` array is used for the input values.
- *
- * This can be overridden by explicitly passing the input values in the constructor:
- *
- * $input = new ArgvInput($_SERVER['argv']);
- *
- * If you pass it yourself, don't forget that the first element of the array
- * is the name of the running program.
- *
- * When passing an argument to the constructor, be sure that it respects
- * the same rules as the argv one. It's almost always better to use the
- * `StringInput` when you want to provide your own input.
- *
- * @author Fabien Potencier
- *
- * @see http://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html
- * @see http://www.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap12.html#tag_12_02
- */
-class ArgvInput extends Input
-{
- protected $tokens;
- protected $parsed;
-
- /**
- * Constructor.
- *
- * @param array $argv An array of parameters from the CLI (in the argv format)
- * @param InputDefinition $definition A InputDefinition instance
- */
- public function __construct(array $argv = null, InputDefinition $definition = null)
- {
- if (null === $argv) {
- $argv = $_SERVER['argv'];
- }
-
- // strip the program name
- array_shift($argv);
-
- $this->tokens = $argv;
-
- parent::__construct($definition);
- }
-
- /**
- * Processes command line arguments.
- */
- protected function parse()
- {
- $this->parsed = $this->tokens;
- while (null !== $token = array_shift($this->parsed)) {
- if ('--' === substr($token, 0, 2)) {
- $this->parseLongOption($token);
- } elseif ('-' === $token[0]) {
- $this->parseShortOption($token);
- } else {
- $this->parseArgument($token);
- }
- }
- }
-
- /**
- * Parses a short option.
- *
- * @param string $token The current token.
- */
- protected function parseShortOption($token)
- {
- $name = substr($token, 1);
-
- if (strlen($name) > 1) {
- if ($this->definition->hasShortcut($name[0]) && $this->definition->getOptionForShortcut($name[0])->acceptValue()) {
- // an option with a value (with no space)
- $this->addShortOption($name[0], substr($name, 1));
- } else {
- $this->parseShortOptionSet($name);
- }
- } else {
- $this->addShortOption($name, null);
- }
- }
-
- /**
- * Parses a short option set.
- *
- * @param string $token The current token
- *
- * @throws \RuntimeException When option given doesn't exist
- */
- protected function parseShortOptionSet($name)
- {
- $len = strlen($name);
- for ($i = 0; $i < $len; $i++) {
- if (!$this->definition->hasShortcut($name[$i])) {
- throw new \RuntimeException(sprintf('The "-%s" option does not exist.', $name[$i]));
- }
-
- $option = $this->definition->getOptionForShortcut($name[$i]);
- if ($option->acceptValue()) {
- $this->addLongOption($option->getName(), $i === $len - 1 ? null : substr($name, $i + 1));
-
- break;
- } else {
- $this->addLongOption($option->getName(), true);
- }
- }
- }
-
- /**
- * Parses a long option.
- *
- * @param string $token The current token
- */
- protected function parseLongOption($token)
- {
- $name = substr($token, 2);
-
- if (false !== $pos = strpos($name, '=')) {
- $this->addLongOption(substr($name, 0, $pos), substr($name, $pos + 1));
- } else {
- $this->addLongOption($name, null);
- }
- }
-
- /**
- * Parses an argument.
- *
- * @param string $token The current token
- *
- * @throws \RuntimeException When too many arguments are given
- */
- protected function parseArgument($token)
- {
- if (!$this->definition->hasArgument(count($this->arguments))) {
- throw new \RuntimeException('Too many arguments.');
- }
-
- $this->arguments[$this->definition->getArgument(count($this->arguments))->getName()] = $token;
- }
-
- /**
- * Adds a short option value.
- *
- * @param string $shortcut The short option key
- * @param mixed $value The value for the option
- *
- * @throws \RuntimeException When option given doesn't exist
- */
- protected function addShortOption($shortcut, $value)
- {
- if (!$this->definition->hasShortcut($shortcut)) {
- throw new \RuntimeException(sprintf('The "-%s" option does not exist.', $shortcut));
- }
-
- $this->addLongOption($this->definition->getOptionForShortcut($shortcut)->getName(), $value);
- }
-
- /**
- * Adds a long option value.
- *
- * @param string $name The long option key
- * @param mixed $value The value for the option
- *
- * @throws \RuntimeException When option given doesn't exist
- */
- protected function addLongOption($name, $value)
- {
- if (!$this->definition->hasOption($name)) {
- throw new \RuntimeException(sprintf('The "--%s" option does not exist.', $name));
- }
-
- $option = $this->definition->getOption($name);
-
- if (null === $value && $option->acceptValue()) {
- // if option accepts an optional or mandatory argument
- // let's see if there is one provided
- $next = array_shift($this->parsed);
- if ('-' !== $next[0]) {
- $value = $next;
- } else {
- array_unshift($this->parsed, $next);
- }
- }
-
- if (null === $value) {
- if ($option->isValueRequired()) {
- throw new \RuntimeException(sprintf('The "--%s" option requires a value.', $name));
- }
-
- $value = $option->isValueOptional() ? $option->getDefault() : true;
- }
-
- $this->options[$name] = $value;
- }
-
- /**
- * Returns the first argument from the raw parameters (not parsed).
- *
- * @return string The value of the first argument or null otherwise
- */
- public function getFirstArgument()
- {
- foreach ($this->tokens as $token) {
- if ($token && '-' === $token[0]) {
- continue;
- }
-
- return $token;
- }
- }
-
- /**
- * Returns true if the raw parameters (not parsed) contains a value.
- *
- * This method is to be used to introspect the input parameters
- * before it has been validated. It must be used carefully.
- *
- * @param string|array $values The value(s) to look for in the raw parameters (can be an array)
- *
- * @return Boolean true if the value is contained in the raw parameters
- */
- public function hasParameterOption($values)
- {
- if (!is_array($values)) {
- $values = array($values);
- }
-
- foreach ($this->tokens as $v) {
- if (in_array($v, $values)) {
- return true;
- }
- }
-
- return false;
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Input/ArrayInput.php b/lib/vendor/Symfony/Component/Console/Input/ArrayInput.php
deleted file mode 100644
index 865e48205..000000000
--- a/lib/vendor/Symfony/Component/Console/Input/ArrayInput.php
+++ /dev/null
@@ -1,162 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * ArrayInput represents an input provided as an array.
- *
- * Usage:
- *
- * $input = new ArrayInput(array('name' => 'foo', '--bar' => 'foobar'));
- *
- * @author Fabien Potencier
- */
-class ArrayInput extends Input
-{
- protected $parameters;
-
- /**
- * Constructor.
- *
- * @param array $param An array of parameters
- * @param InputDefinition $definition A InputDefinition instance
- */
- public function __construct(array $parameters, InputDefinition $definition = null)
- {
- $this->parameters = $parameters;
-
- parent::__construct($definition);
- }
-
- /**
- * Returns the first argument from the raw parameters (not parsed).
- *
- * @return string The value of the first argument or null otherwise
- */
- public function getFirstArgument()
- {
- foreach ($this->parameters as $key => $value) {
- if ($key && '-' === $key[0]) {
- continue;
- }
-
- return $value;
- }
- }
-
- /**
- * Returns true if the raw parameters (not parsed) contains a value.
- *
- * This method is to be used to introspect the input parameters
- * before it has been validated. It must be used carefully.
- *
- * @param string|array $value The values to look for in the raw parameters (can be an array)
- *
- * @return Boolean true if the value is contained in the raw parameters
- */
- public function hasParameterOption($values)
- {
- if (!is_array($values)) {
- $values = array($values);
- }
-
- foreach ($this->parameters as $k => $v) {
- if (!is_int($k)) {
- $v = $k;
- }
-
- if (in_array($v, $values)) {
- return true;
- }
- }
-
- return false;
- }
-
- /**
- * Processes command line arguments.
- */
- protected function parse()
- {
- foreach ($this->parameters as $key => $value) {
- if ('--' === substr($key, 0, 2)) {
- $this->addLongOption(substr($key, 2), $value);
- } elseif ('-' === $key[0]) {
- $this->addShortOption(substr($key, 1), $value);
- } else {
- $this->addArgument($key, $value);
- }
- }
- }
-
- /**
- * Adds a short option value.
- *
- * @param string $shortcut The short option key
- * @param mixed $value The value for the option
- *
- * @throws \RuntimeException When option given doesn't exist
- */
- protected function addShortOption($shortcut, $value)
- {
- if (!$this->definition->hasShortcut($shortcut)) {
- throw new \InvalidArgumentException(sprintf('The "-%s" option does not exist.', $shortcut));
- }
-
- $this->addLongOption($this->definition->getOptionForShortcut($shortcut)->getName(), $value);
- }
-
- /**
- * Adds a long option value.
- *
- * @param string $name The long option key
- * @param mixed $value The value for the option
- *
- * @throws \InvalidArgumentException When option given doesn't exist
- * @throws \InvalidArgumentException When a required value is missing
- */
- protected function addLongOption($name, $value)
- {
- if (!$this->definition->hasOption($name)) {
- throw new \InvalidArgumentException(sprintf('The "--%s" option does not exist.', $name));
- }
-
- $option = $this->definition->getOption($name);
-
- if (null === $value) {
- if ($option->isValueRequired()) {
- throw new \InvalidArgumentException(sprintf('The "--%s" option requires a value.', $name));
- }
-
- $value = $option->isValueOptional() ? $option->getDefault() : true;
- }
-
- $this->options[$name] = $value;
- }
-
- /**
- * Adds an argument value.
- *
- * @param string $name The argument name
- * @param mixed $value The value for the argument
- *
- * @throws \InvalidArgumentException When argument given doesn't exist
- */
- protected function addArgument($name, $value)
- {
- if (!$this->definition->hasArgument($name)) {
- throw new \InvalidArgumentException(sprintf('The "%s" argument does not exist.', $name));
- }
-
- $this->arguments[$name] = $value;
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Input/Input.php b/lib/vendor/Symfony/Component/Console/Input/Input.php
deleted file mode 100644
index 9819b188e..000000000
--- a/lib/vendor/Symfony/Component/Console/Input/Input.php
+++ /dev/null
@@ -1,199 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * Input is the base class for all concrete Input classes.
- *
- * Three concrete classes are provided by default:
- *
- * * `ArgvInput`: The input comes from the CLI arguments (argv)
- * * `StringInput`: The input is provided as a string
- * * `ArrayInput`: The input is provided as an array
- *
- * @author Fabien Potencier
- */
-abstract class Input implements InputInterface
-{
- protected $definition;
- protected $options;
- protected $arguments;
- protected $interactive = true;
-
- /**
- * Constructor.
- *
- * @param InputDefinition $definition A InputDefinition instance
- */
- public function __construct(InputDefinition $definition = null)
- {
- if (null === $definition) {
- $this->definition = new InputDefinition();
- } else {
- $this->bind($definition);
- $this->validate();
- }
- }
-
- /**
- * Binds the current Input instance with the given arguments and options.
- *
- * @param InputDefinition $definition A InputDefinition instance
- */
- public function bind(InputDefinition $definition)
- {
- $this->arguments = array();
- $this->options = array();
- $this->definition = $definition;
-
- $this->parse();
- }
-
- /**
- * Processes command line arguments.
- */
- abstract protected function parse();
-
- /**
- * @throws \RuntimeException When not enough arguments are given
- */
- public function validate()
- {
- if (count($this->arguments) < $this->definition->getArgumentRequiredCount()) {
- throw new \RuntimeException('Not enough arguments.');
- }
- }
-
- public function isInteractive()
- {
- return $this->interactive;
- }
-
- public function setInteractive($interactive)
- {
- $this->interactive = (Boolean) $interactive;
- }
-
- /**
- * Returns the argument values.
- *
- * @return array An array of argument values
- */
- public function getArguments()
- {
- return array_merge($this->definition->getArgumentDefaults(), $this->arguments);
- }
-
- /**
- * Returns the argument value for a given argument name.
- *
- * @param string $name The argument name
- *
- * @return mixed The argument value
- *
- * @throws \InvalidArgumentException When argument given doesn't exist
- */
- public function getArgument($name)
- {
- if (!$this->definition->hasArgument($name)) {
- throw new \InvalidArgumentException(sprintf('The "%s" argument does not exist.', $name));
- }
-
- return isset($this->arguments[$name]) ? $this->arguments[$name] : $this->definition->getArgument($name)->getDefault();
- }
-
- /**
- * Sets an argument value by name.
- *
- * @param string $name The argument name
- * @param string $value The argument value
- *
- * @throws \InvalidArgumentException When argument given doesn't exist
- */
- public function setArgument($name, $value)
- {
- if (!$this->definition->hasArgument($name)) {
- throw new \InvalidArgumentException(sprintf('The "%s" argument does not exist.', $name));
- }
-
- $this->arguments[$name] = $value;
- }
-
- /**
- * Returns true if an InputArgument object exists by name or position.
- *
- * @param string|integer $name The InputArgument name or position
- *
- * @return Boolean true if the InputArgument object exists, false otherwise
- */
- public function hasArgument($name)
- {
- return $this->definition->hasArgument($name);
- }
-
- /**
- * Returns the options values.
- *
- * @return array An array of option values
- */
- public function getOptions()
- {
- return array_merge($this->definition->getOptionDefaults(), $this->options);
- }
-
- /**
- * Returns the option value for a given option name.
- *
- * @param string $name The option name
- *
- * @return mixed The option value
- *
- * @throws \InvalidArgumentException When option given doesn't exist
- */
- public function getOption($name)
- {
- if (!$this->definition->hasOption($name)) {
- throw new \InvalidArgumentException(sprintf('The "%s" option does not exist.', $name));
- }
-
- return isset($this->options[$name]) ? $this->options[$name] : $this->definition->getOption($name)->getDefault();
- }
-
- /**
- * Sets an option value by name.
- *
- * @param string $name The option name
- * @param string $value The option value
- *
- * @throws \InvalidArgumentException When option given doesn't exist
- */
- public function setOption($name, $value)
- {
- if (!$this->definition->hasOption($name)) {
- throw new \InvalidArgumentException(sprintf('The "%s" option does not exist.', $name));
- }
-
- $this->options[$name] = $value;
- }
-
- /**
- * Returns true if an InputOption object exists by name.
- *
- * @param string $name The InputOption name
- *
- * @return Boolean true if the InputOption object exists, false otherwise
- */
- public function hasOption($name)
- {
- return $this->definition->hasOption($name);
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Input/InputArgument.php b/lib/vendor/Symfony/Component/Console/Input/InputArgument.php
deleted file mode 100644
index f96eecb6b..000000000
--- a/lib/vendor/Symfony/Component/Console/Input/InputArgument.php
+++ /dev/null
@@ -1,128 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * Represents a command line argument.
- *
- * @author Fabien Potencier
- */
-class InputArgument
-{
- const REQUIRED = 1;
- const OPTIONAL = 2;
- const IS_ARRAY = 4;
-
- protected $name;
- protected $mode;
- protected $default;
- protected $description;
-
- /**
- * Constructor.
- *
- * @param string $name The argument name
- * @param integer $mode The argument mode: self::REQUIRED or self::OPTIONAL
- * @param string $description A description text
- * @param mixed $default The default value (for self::OPTIONAL mode only)
- *
- * @throws \InvalidArgumentException When argument mode is not valid
- */
- public function __construct($name, $mode = null, $description = '', $default = null)
- {
- if (null === $mode) {
- $mode = self::OPTIONAL;
- } else if (is_string($mode) || $mode > 7) {
- throw new \InvalidArgumentException(sprintf('Argument mode "%s" is not valid.', $mode));
- }
-
- $this->name = $name;
- $this->mode = $mode;
- $this->description = $description;
-
- $this->setDefault($default);
- }
-
- /**
- * Returns the argument name.
- *
- * @return string The argument name
- */
- public function getName()
- {
- return $this->name;
- }
-
- /**
- * Returns true if the argument is required.
- *
- * @return Boolean true if parameter mode is self::REQUIRED, false otherwise
- */
- public function isRequired()
- {
- return self::REQUIRED === (self::REQUIRED & $this->mode);
- }
-
- /**
- * Returns true if the argument can take multiple values.
- *
- * @return Boolean true if mode is self::IS_ARRAY, false otherwise
- */
- public function isArray()
- {
- return self::IS_ARRAY === (self::IS_ARRAY & $this->mode);
- }
-
- /**
- * Sets the default value.
- *
- * @param mixed $default The default value
- *
- * @throws \LogicException When incorrect default value is given
- */
- public function setDefault($default = null)
- {
- if (self::REQUIRED === $this->mode && null !== $default) {
- throw new \LogicException('Cannot set a default value except for Parameter::OPTIONAL mode.');
- }
-
- if ($this->isArray()) {
- if (null === $default) {
- $default = array();
- } else if (!is_array($default)) {
- throw new \LogicException('A default value for an array argument must be an array.');
- }
- }
-
- $this->default = $default;
- }
-
- /**
- * Returns the default value.
- *
- * @return mixed The default value
- */
- public function getDefault()
- {
- return $this->default;
- }
-
- /**
- * Returns the description text.
- *
- * @return string The description text
- */
- public function getDescription()
- {
- return $this->description;
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Input/InputDefinition.php b/lib/vendor/Symfony/Component/Console/Input/InputDefinition.php
deleted file mode 100644
index bc2e8bcc7..000000000
--- a/lib/vendor/Symfony/Component/Console/Input/InputDefinition.php
+++ /dev/null
@@ -1,471 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * A InputDefinition represents a set of valid command line arguments and options.
- *
- * Usage:
- *
- * $definition = new InputDefinition(array(
- * new InputArgument('name', InputArgument::REQUIRED),
- * new InputOption('foo', 'f', InputOption::VALUE_REQUIRED),
- * ));
- *
- * @author Fabien Potencier
- */
-class InputDefinition
-{
- protected $arguments;
- protected $requiredCount;
- protected $hasAnArrayArgument = false;
- protected $hasOptional;
- protected $options;
- protected $shortcuts;
-
- /**
- * Constructor.
- *
- * @param array $definition An array of InputArgument and InputOption instance
- */
- public function __construct(array $definition = array())
- {
- $this->setDefinition($definition);
- }
-
- public function setDefinition(array $definition)
- {
- $arguments = array();
- $options = array();
- foreach ($definition as $item) {
- if ($item instanceof InputOption) {
- $options[] = $item;
- } else {
- $arguments[] = $item;
- }
- }
-
- $this->setArguments($arguments);
- $this->setOptions($options);
- }
-
- /**
- * Sets the InputArgument objects.
- *
- * @param array $arguments An array of InputArgument objects
- */
- public function setArguments($arguments = array())
- {
- $this->arguments = array();
- $this->requiredCount = 0;
- $this->hasOptional = false;
- $this->hasAnArrayArgument = false;
- $this->addArguments($arguments);
- }
-
- /**
- * Add an array of InputArgument objects.
- *
- * @param InputArgument[] $arguments An array of InputArgument objects
- */
- public function addArguments($arguments = array())
- {
- if (null !== $arguments) {
- foreach ($arguments as $argument) {
- $this->addArgument($argument);
- }
- }
- }
-
- /**
- * Add an InputArgument object.
- *
- * @param InputArgument $argument An InputArgument object
- *
- * @throws \LogicException When incorrect argument is given
- */
- public function addArgument(InputArgument $argument)
- {
- if (isset($this->arguments[$argument->getName()])) {
- throw new \LogicException(sprintf('An argument with name "%s" already exist.', $argument->getName()));
- }
-
- if ($this->hasAnArrayArgument) {
- throw new \LogicException('Cannot add an argument after an array argument.');
- }
-
- if ($argument->isRequired() && $this->hasOptional) {
- throw new \LogicException('Cannot add a required argument after an optional one.');
- }
-
- if ($argument->isArray()) {
- $this->hasAnArrayArgument = true;
- }
-
- if ($argument->isRequired()) {
- ++$this->requiredCount;
- } else {
- $this->hasOptional = true;
- }
-
- $this->arguments[$argument->getName()] = $argument;
- }
-
- /**
- * Returns an InputArgument by name or by position.
- *
- * @param string|integer $name The InputArgument name or position
- *
- * @return InputArgument An InputArgument object
- *
- * @throws \InvalidArgumentException When argument given doesn't exist
- */
- public function getArgument($name)
- {
- $arguments = is_int($name) ? array_values($this->arguments) : $this->arguments;
-
- if (!$this->hasArgument($name)) {
- throw new \InvalidArgumentException(sprintf('The "%s" argument does not exist.', $name));
- }
-
- return $arguments[$name];
- }
-
- /**
- * Returns true if an InputArgument object exists by name or position.
- *
- * @param string|integer $name The InputArgument name or position
- *
- * @return Boolean true if the InputArgument object exists, false otherwise
- */
- public function hasArgument($name)
- {
- $arguments = is_int($name) ? array_values($this->arguments) : $this->arguments;
-
- return isset($arguments[$name]);
- }
-
- /**
- * Gets the array of InputArgument objects.
- *
- * @return array An array of InputArgument objects
- */
- public function getArguments()
- {
- return $this->arguments;
- }
-
- /**
- * Returns the number of InputArguments.
- *
- * @return integer The number of InputArguments
- */
- public function getArgumentCount()
- {
- return $this->hasAnArrayArgument ? PHP_INT_MAX : count($this->arguments);
- }
-
- /**
- * Returns the number of required InputArguments.
- *
- * @return integer The number of required InputArguments
- */
- public function getArgumentRequiredCount()
- {
- return $this->requiredCount;
- }
-
- /**
- * Gets the default values.
- *
- * @return array An array of default values
- */
- public function getArgumentDefaults()
- {
- $values = array();
- foreach ($this->arguments as $argument) {
- $values[$argument->getName()] = $argument->getDefault();
- }
-
- return $values;
- }
-
- /**
- * Sets the InputOption objects.
- *
- * @param array $options An array of InputOption objects
- */
- public function setOptions($options = array())
- {
- $this->options = array();
- $this->shortcuts = array();
- $this->addOptions($options);
- }
-
- /**
- * Add an array of InputOption objects.
- *
- * @param InputOption[] $options An array of InputOption objects
- */
- public function addOptions($options = array())
- {
- foreach ($options as $option) {
- $this->addOption($option);
- }
- }
-
- /**
- * Add an InputOption object.
- *
- * @param InputOption $option An InputOption object
- *
- * @throws \LogicException When option given already exist
- */
- public function addOption(InputOption $option)
- {
- if (isset($this->options[$option->getName()])) {
- throw new \LogicException(sprintf('An option named "%s" already exist.', $option->getName()));
- } else if (isset($this->shortcuts[$option->getShortcut()])) {
- throw new \LogicException(sprintf('An option with shortcut "%s" already exist.', $option->getShortcut()));
- }
-
- $this->options[$option->getName()] = $option;
- if ($option->getShortcut()) {
- $this->shortcuts[$option->getShortcut()] = $option->getName();
- }
- }
-
- /**
- * Returns an InputOption by name.
- *
- * @param string $name The InputOption name
- *
- * @return InputOption A InputOption object
- */
- public function getOption($name)
- {
- if (!$this->hasOption($name)) {
- throw new \InvalidArgumentException(sprintf('The "--%s" option does not exist.', $name));
- }
-
- return $this->options[$name];
- }
-
- /**
- * Returns true if an InputOption object exists by name.
- *
- * @param string $name The InputOption name
- *
- * @return Boolean true if the InputOption object exists, false otherwise
- */
- public function hasOption($name)
- {
- return isset($this->options[$name]);
- }
-
- /**
- * Gets the array of InputOption objects.
- *
- * @return array An array of InputOption objects
- */
- public function getOptions()
- {
- return $this->options;
- }
-
- /**
- * Returns true if an InputOption object exists by shortcut.
- *
- * @param string $name The InputOption shortcut
- *
- * @return Boolean true if the InputOption object exists, false otherwise
- */
- public function hasShortcut($name)
- {
- return isset($this->shortcuts[$name]);
- }
-
- /**
- * Gets an InputOption by shortcut.
- *
- * @return InputOption An InputOption object
- */
- public function getOptionForShortcut($shortcut)
- {
- return $this->getOption($this->shortcutToName($shortcut));
- }
-
- /**
- * Gets an array of default values.
- *
- * @return array An array of all default values
- */
- public function getOptionDefaults()
- {
- $values = array();
- foreach ($this->options as $option) {
- $values[$option->getName()] = $option->getDefault();
- }
-
- return $values;
- }
-
- /**
- * Returns the InputOption name given a shortcut.
- *
- * @param string $shortcut The shortcut
- *
- * @return string The InputOption name
- *
- * @throws \InvalidArgumentException When option given does not exist
- */
- protected function shortcutToName($shortcut)
- {
- if (!isset($this->shortcuts[$shortcut])) {
- throw new \InvalidArgumentException(sprintf('The "-%s" option does not exist.', $shortcut));
- }
-
- return $this->shortcuts[$shortcut];
- }
-
- /**
- * Gets the synopsis.
- *
- * @return string The synopsis
- */
- public function getSynopsis()
- {
- $elements = array();
- foreach ($this->getOptions() as $option) {
- $shortcut = $option->getShortcut() ? sprintf('-%s|', $option->getShortcut()) : '';
- $elements[] = sprintf('['.($option->isValueRequired() ? '%s--%s="..."' : ($option->isValueOptional() ? '%s--%s[="..."]' : '%s--%s')).']', $shortcut, $option->getName());
- }
-
- foreach ($this->getArguments() as $argument) {
- $elements[] = sprintf($argument->isRequired() ? '%s' : '[%s]', $argument->getName().($argument->isArray() ? '1' : ''));
-
- if ($argument->isArray()) {
- $elements[] = sprintf('... [%sN]', $argument->getName());
- }
- }
-
- return implode(' ', $elements);
- }
-
- /**
- * Returns a textual representation of the InputDefinition.
- *
- * @return string A string representing the InputDefinition
- */
- public function asText()
- {
- // find the largest option or argument name
- $max = 0;
- foreach ($this->getOptions() as $option) {
- $max = strlen($option->getName()) + 2 > $max ? strlen($option->getName()) + 2 : $max;
- }
- foreach ($this->getArguments() as $argument) {
- $max = strlen($argument->getName()) > $max ? strlen($argument->getName()) : $max;
- }
- ++$max;
-
- $text = array();
-
- if ($this->getArguments()) {
- $text[] = 'Arguments:';
- foreach ($this->getArguments() as $argument) {
- if (null !== $argument->getDefault() && (!is_array($argument->getDefault()) || count($argument->getDefault()))) {
- $default = sprintf(' (default: %s)', is_array($argument->getDefault()) ? str_replace("\n", '', var_export($argument->getDefault(), true)): $argument->getDefault());
- } else {
- $default = '';
- }
-
- $text[] = sprintf(" %-${max}s %s%s", $argument->getName(), $argument->getDescription(), $default);
- }
-
- $text[] = '';
- }
-
- if ($this->getOptions()) {
- $text[] = 'Options:';
-
- foreach ($this->getOptions() as $option) {
- if ($option->acceptValue() && null !== $option->getDefault() && (!is_array($option->getDefault()) || count($option->getDefault()))) {
- $default = sprintf(' (default: %s)', is_array($option->getDefault()) ? str_replace("\n", '', print_r($option->getDefault(), true)): $option->getDefault());
- } else {
- $default = '';
- }
-
- $multiple = $option->isArray() ? ' (multiple values allowed)' : '';
- $text[] = sprintf(' %-'.$max.'s %s%s%s%s', '--'.$option->getName().'', $option->getShortcut() ? sprintf('(-%s) ', $option->getShortcut()) : '', $option->getDescription(), $default, $multiple);
- }
-
- $text[] = '';
- }
-
- return implode("\n", $text);
- }
-
- /**
- * Returns an XML representation of the InputDefinition.
- *
- * @param Boolean $asDom Whether to return a DOM or an XML string
- *
- * @return string|DOMDocument An XML string representing the InputDefinition
- */
- public function asXml($asDom = false)
- {
- $dom = new \DOMDocument('1.0', 'UTF-8');
- $dom->formatOutput = true;
- $dom->appendChild($definitionXML = $dom->createElement('definition'));
-
- $definitionXML->appendChild($argumentsXML = $dom->createElement('arguments'));
- foreach ($this->getArguments() as $argument) {
- $argumentsXML->appendChild($argumentXML = $dom->createElement('argument'));
- $argumentXML->setAttribute('name', $argument->getName());
- $argumentXML->setAttribute('is_required', $argument->isRequired() ? 1 : 0);
- $argumentXML->setAttribute('is_array', $argument->isArray() ? 1 : 0);
- $argumentXML->appendChild($descriptionXML = $dom->createElement('description'));
- $descriptionXML->appendChild($dom->createTextNode($argument->getDescription()));
-
- $argumentXML->appendChild($defaultsXML = $dom->createElement('defaults'));
- $defaults = is_array($argument->getDefault()) ? $argument->getDefault() : ($argument->getDefault() ? array($argument->getDefault()) : array());
- foreach ($defaults as $default) {
- $defaultsXML->appendChild($defaultXML = $dom->createElement('default'));
- $defaultXML->appendChild($dom->createTextNode($default));
- }
- }
-
- $definitionXML->appendChild($optionsXML = $dom->createElement('options'));
- foreach ($this->getOptions() as $option) {
- $optionsXML->appendChild($optionXML = $dom->createElement('option'));
- $optionXML->setAttribute('name', '--'.$option->getName());
- $optionXML->setAttribute('shortcut', $option->getShortcut() ? '-'.$option->getShortcut() : '');
- $optionXML->setAttribute('accept_value', $option->acceptValue() ? 1 : 0);
- $optionXML->setAttribute('is_value_required', $option->isValueRequired() ? 1 : 0);
- $optionXML->setAttribute('is_multiple', $option->isArray() ? 1 : 0);
- $optionXML->appendChild($descriptionXML = $dom->createElement('description'));
- $descriptionXML->appendChild($dom->createTextNode($option->getDescription()));
-
- if ($option->acceptValue()) {
- $optionXML->appendChild($defaultsXML = $dom->createElement('defaults'));
- $defaults = is_array($option->getDefault()) ? $option->getDefault() : ($option->getDefault() ? array($option->getDefault()) : array());
- foreach ($defaults as $default) {
- $defaultsXML->appendChild($defaultXML = $dom->createElement('default'));
- $defaultXML->appendChild($dom->createTextNode($default));
- }
- }
- }
-
- return $asDom ? $dom : $dom->saveXml();
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Input/InputInterface.php b/lib/vendor/Symfony/Component/Console/Input/InputInterface.php
deleted file mode 100644
index a0f1aa0dc..000000000
--- a/lib/vendor/Symfony/Component/Console/Input/InputInterface.php
+++ /dev/null
@@ -1,56 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * InputInterface is the interface implemented by all input classes.
- *
- * @author Fabien Potencier
- */
-interface InputInterface
-{
- /**
- * Returns the first argument from the raw parameters (not parsed).
- *
- * @return string The value of the first argument or null otherwise
- */
- function getFirstArgument();
-
- /**
- * Returns true if the raw parameters (not parsed) contains a value.
- *
- * This method is to be used to introspect the input parameters
- * before it has been validated. It must be used carefully.
- *
- * @param string $value The value to look for in the raw parameters
- *
- * @return Boolean true if the value is contained in the raw parameters
- */
- function hasParameterOption($value);
-
- /**
- * Binds the current Input instance with the given arguments and options.
- *
- * @param InputDefinition $definition A InputDefinition instance
- */
- function bind(InputDefinition $definition);
-
- function validate();
-
- function getArguments();
-
- function getArgument($name);
-
- function getOptions();
-
- function getOption($name);
-}
diff --git a/lib/vendor/Symfony/Component/Console/Input/InputOption.php b/lib/vendor/Symfony/Component/Console/Input/InputOption.php
deleted file mode 100644
index 3b22bbe1e..000000000
--- a/lib/vendor/Symfony/Component/Console/Input/InputOption.php
+++ /dev/null
@@ -1,178 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * Represents a command line option.
- *
- * @author Fabien Potencier
- */
-class InputOption
-{
- const VALUE_NONE = 1;
- const VALUE_REQUIRED = 2;
- const VALUE_OPTIONAL = 4;
- const VALUE_IS_ARRAY = 8;
-
- protected $name;
- protected $shortcut;
- protected $mode;
- protected $default;
- protected $description;
-
- /**
- * Constructor.
- *
- * @param string $name The option name
- * @param string $shortcut The shortcut (can be null)
- * @param integer $mode The option mode: One of the VALUE_* constants
- * @param string $description A description text
- * @param mixed $default The default value (must be null for self::VALUE_REQUIRED or self::VALUE_NONE)
- *
- * @throws \InvalidArgumentException If option mode is invalid or incompatible
- */
- public function __construct($name, $shortcut = null, $mode = null, $description = '', $default = null)
- {
- if ('--' === substr($name, 0, 2)) {
- $name = substr($name, 2);
- }
-
- if (empty($shortcut)) {
- $shortcut = null;
- }
-
- if (null !== $shortcut) {
- if ('-' === $shortcut[0]) {
- $shortcut = substr($shortcut, 1);
- }
- }
-
- if (null === $mode) {
- $mode = self::VALUE_NONE;
- } else if (!is_int($mode) || $mode > 15) {
- throw new \InvalidArgumentException(sprintf('Option mode "%s" is not valid.', $mode));
- }
-
- $this->name = $name;
- $this->shortcut = $shortcut;
- $this->mode = $mode;
- $this->description = $description;
-
- if ($this->isArray() && !$this->acceptValue()) {
- throw new \InvalidArgumentException('Impossible to have an option mode VALUE_IS_ARRAY if the option does not accept a value.');
- }
-
- $this->setDefault($default);
- }
-
- /**
- * Returns the shortcut.
- *
- * @return string The shortcut
- */
- public function getShortcut()
- {
- return $this->shortcut;
- }
-
- /**
- * Returns the name.
- *
- * @return string The name
- */
- public function getName()
- {
- return $this->name;
- }
-
- /**
- * Returns true if the option accepts a value.
- *
- * @return Boolean true if value mode is not self::VALUE_NONE, false otherwise
- */
- public function acceptValue()
- {
- return $this->isValueRequired() || $this->isValueOptional();
- }
-
- /**
- * Returns true if the option requires a value.
- *
- * @return Boolean true if value mode is self::VALUE_REQUIRED, false otherwise
- */
- public function isValueRequired()
- {
- return self::VALUE_REQUIRED === (self::VALUE_REQUIRED & $this->mode);
- }
-
- /**
- * Returns true if the option takes an optional value.
- *
- * @return Boolean true if value mode is self::VALUE_OPTIONAL, false otherwise
- */
- public function isValueOptional()
- {
- return self::VALUE_OPTIONAL === (self::VALUE_OPTIONAL & $this->mode);
- }
-
- /**
- * Returns true if the option can take multiple values.
- *
- * @return Boolean true if mode is self::VALUE_IS_ARRAY, false otherwise
- */
- public function isArray()
- {
- return self::VALUE_IS_ARRAY === (self::VALUE_IS_ARRAY & $this->mode);
- }
-
- /**
- * Sets the default value.
- *
- * @param mixed $default The default value
- */
- public function setDefault($default = null)
- {
- if (self::VALUE_NONE === (self::VALUE_NONE & $this->mode) && null !== $default) {
- throw new \LogicException('Cannot set a default value when using Option::VALUE_NONE mode.');
- }
-
- if ($this->isArray()) {
- if (null === $default) {
- $default = array();
- } elseif (!is_array($default)) {
- throw new \LogicException('A default value for an array option must be an array.');
- }
- }
-
- $this->default = $this->acceptValue() ? $default : false;
- }
-
- /**
- * Returns the default value.
- *
- * @return mixed The default value
- */
- public function getDefault()
- {
- return $this->default;
- }
-
- /**
- * Returns the description text.
- *
- * @return string The description text
- */
- public function getDescription()
- {
- return $this->description;
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Input/StringInput.php b/lib/vendor/Symfony/Component/Console/Input/StringInput.php
deleted file mode 100644
index bc8cc2cb5..000000000
--- a/lib/vendor/Symfony/Component/Console/Input/StringInput.php
+++ /dev/null
@@ -1,71 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * StringInput represents an input provided as a string.
- *
- * Usage:
- *
- * $input = new StringInput('foo --bar="foobar"');
- *
- * @author Fabien Potencier
- */
-class StringInput extends ArgvInput
-{
- const REGEX_STRING = '([^ ]+?)(?: |(?tokens = $this->tokenize($input);
- }
-
- /**
- * @throws \InvalidArgumentException When unable to parse input (should never happen)
- */
- protected function tokenize($input)
- {
- $input = preg_replace('/(\r\n|\r|\n|\t)/', ' ', $input);
-
- $tokens = array();
- $length = strlen($input);
- $cursor = 0;
- while ($cursor < $length) {
- if (preg_match('/\s+/A', $input, $match, null, $cursor)) {
- } elseif (preg_match('/([^="\' ]+?)(=?)('.self::REGEX_QUOTED_STRING.'+)/A', $input, $match, null, $cursor)) {
- $tokens[] = $match[1].$match[2].stripcslashes(str_replace(array('"\'', '\'"', '\'\'', '""'), '', substr($match[3], 1, strlen($match[3]) - 2)));
- } elseif (preg_match('/'.self::REGEX_QUOTED_STRING.'/A', $input, $match, null, $cursor)) {
- $tokens[] = stripcslashes(substr($match[0], 1, strlen($match[0]) - 2));
- } elseif (preg_match('/'.self::REGEX_STRING.'/A', $input, $match, null, $cursor)) {
- $tokens[] = stripcslashes($match[1]);
- } else {
- // should never happen
- // @codeCoverageIgnoreStart
- throw new \InvalidArgumentException(sprintf('Unable to parse input near "... %s ..."', substr($input, $cursor, 10)));
- // @codeCoverageIgnoreEnd
- }
-
- $cursor += strlen($match[0]);
- }
-
- return $tokens;
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Output/ConsoleOutput.php b/lib/vendor/Symfony/Component/Console/Output/ConsoleOutput.php
deleted file mode 100644
index 9aa479126..000000000
--- a/lib/vendor/Symfony/Component/Console/Output/ConsoleOutput.php
+++ /dev/null
@@ -1,39 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * ConsoleOutput is the default class for all CLI output. It uses STDOUT.
- *
- * This class is a convenient wrapper around `StreamOutput`.
- *
- * $output = new ConsoleOutput();
- *
- * This is equivalent to:
- *
- * $output = new StreamOutput(fopen('php://stdout', 'w'));
- *
- * @author Fabien Potencier
- */
-class ConsoleOutput extends StreamOutput
-{
- /**
- * Constructor.
- *
- * @param integer $verbosity The verbosity level (self::VERBOSITY_QUIET, self::VERBOSITY_NORMAL, self::VERBOSITY_VERBOSE)
- * @param Boolean $decorated Whether to decorate messages or not (null for auto-guessing)
- */
- public function __construct($verbosity = self::VERBOSITY_NORMAL, $decorated = null)
- {
- parent::__construct(fopen('php://stdout', 'w'), $verbosity, $decorated);
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Output/NullOutput.php b/lib/vendor/Symfony/Component/Console/Output/NullOutput.php
deleted file mode 100644
index 695ca0eab..000000000
--- a/lib/vendor/Symfony/Component/Console/Output/NullOutput.php
+++ /dev/null
@@ -1,32 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * NullOutput suppresses all output.
- *
- * $output = new NullOutput();
- *
- * @author Fabien Potencier
- */
-class NullOutput extends Output
-{
- /**
- * Writes a message to the output.
- *
- * @param string $message A message to write to the output
- * @param Boolean $newline Whether to add a newline or not
- */
- public function doWrite($message, $newline)
- {
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Output/Output.php b/lib/vendor/Symfony/Component/Console/Output/Output.php
deleted file mode 100644
index f4542f456..000000000
--- a/lib/vendor/Symfony/Component/Console/Output/Output.php
+++ /dev/null
@@ -1,231 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * Base class for output classes.
- *
- * There is three level of verbosity:
- *
- * * normal: no option passed (normal output - information)
- * * verbose: -v (more output - debug)
- * * quiet: -q (no output)
- *
- * @author Fabien Potencier
- */
-abstract class Output implements OutputInterface
-{
- const VERBOSITY_QUIET = 0;
- const VERBOSITY_NORMAL = 1;
- const VERBOSITY_VERBOSE = 2;
-
- const OUTPUT_NORMAL = 0;
- const OUTPUT_RAW = 1;
- const OUTPUT_PLAIN = 2;
-
- protected $verbosity;
- protected $decorated;
-
- static protected $styles = array(
- 'error' => array('bg' => 'red', 'fg' => 'white'),
- 'info' => array('fg' => 'green'),
- 'comment' => array('fg' => 'yellow'),
- 'question' => array('bg' => 'cyan', 'fg' => 'black'),
- );
- static protected $options = array('bold' => 1, 'underscore' => 4, 'blink' => 5, 'reverse' => 7, 'conceal' => 8);
- static protected $foreground = array('black' => 30, 'red' => 31, 'green' => 32, 'yellow' => 33, 'blue' => 34, 'magenta' => 35, 'cyan' => 36, 'white' => 37);
- static protected $background = array('black' => 40, 'red' => 41, 'green' => 42, 'yellow' => 43, 'blue' => 44, 'magenta' => 45, 'cyan' => 46, 'white' => 47);
-
- /**
- * Constructor.
- *
- * @param integer $verbosity The verbosity level (self::VERBOSITY_QUIET, self::VERBOSITY_NORMAL, self::VERBOSITY_VERBOSE)
- * @param Boolean $decorated Whether to decorate messages or not (null for auto-guessing)
- */
- public function __construct($verbosity = self::VERBOSITY_NORMAL, $decorated = null)
- {
- $this->decorated = (Boolean) $decorated;
- $this->verbosity = null === $verbosity ? self::VERBOSITY_NORMAL : $verbosity;
- }
-
- /**
- * Sets a new style.
- *
- * @param string $name The style name
- * @param array $options An array of options
- */
- static public function setStyle($name, $options = array())
- {
- static::$styles[strtolower($name)] = $options;
- }
-
- /**
- * Sets the decorated flag.
- *
- * @param Boolean $decorated Whether to decorated the messages or not
- */
- public function setDecorated($decorated)
- {
- $this->decorated = (Boolean) $decorated;
- }
-
- /**
- * Gets the decorated flag.
- *
- * @return Boolean true if the output will decorate messages, false otherwise
- */
- public function isDecorated()
- {
- return $this->decorated;
- }
-
- /**
- * Sets the verbosity of the output.
- *
- * @param integer $level The level of verbosity
- */
- public function setVerbosity($level)
- {
- $this->verbosity = (int) $level;
- }
-
- /**
- * Gets the current verbosity of the output.
- *
- * @return integer The current level of verbosity
- */
- public function getVerbosity()
- {
- return $this->verbosity;
- }
-
- /**
- * Writes a message to the output and adds a newline at the end.
- *
- * @param string|array $messages The message as an array of lines of a single string
- * @param integer $type The type of output
- */
- public function writeln($messages, $type = 0)
- {
- $this->write($messages, true, $type);
- }
-
- /**
- * Writes a message to the output.
- *
- * @param string|array $messages The message as an array of lines of a single string
- * @param Boolean $newline Whether to add a newline or not
- * @param integer $type The type of output
- *
- * @throws \InvalidArgumentException When unknown output type is given
- */
- public function write($messages, $newline = false, $type = 0)
- {
- if (self::VERBOSITY_QUIET === $this->verbosity) {
- return;
- }
-
- if (!is_array($messages)) {
- $messages = array($messages);
- }
-
- foreach ($messages as $message) {
- switch ($type) {
- case Output::OUTPUT_NORMAL:
- $message = $this->format($message);
- break;
- case Output::OUTPUT_RAW:
- break;
- case Output::OUTPUT_PLAIN:
- $message = strip_tags($this->format($message));
- break;
- default:
- throw new \InvalidArgumentException(sprintf('Unknown output type given (%s)', $type));
- }
-
- $this->doWrite($message, $newline);
- }
- }
-
- /**
- * Writes a message to the output.
- *
- * @param string $message A message to write to the output
- * @param Boolean $newline Whether to add a newline or not
- */
- abstract public function doWrite($message, $newline);
-
- /**
- * Formats a message according to the given styles.
- *
- * @param string $message The message to style
- *
- * @return string The styled message
- */
- protected function format($message)
- {
- $message = preg_replace_callback('#<([a-z][a-z0-9\-_=;]+)>#i', array($this, 'replaceStartStyle'), $message);
-
- return preg_replace_callback('#([a-z][a-z0-9\-_]*)?>#i', array($this, 'replaceEndStyle'), $message);
- }
-
- /**
- * @throws \InvalidArgumentException When style is unknown
- */
- protected function replaceStartStyle($match)
- {
- if (!$this->decorated) {
- return '';
- }
-
- if (isset(static::$styles[strtolower($match[1])])) {
- $parameters = static::$styles[strtolower($match[1])];
- } else {
- // bg=blue;fg=red
- if (!preg_match_all('/([^=]+)=([^;]+)(;|$)/', strtolower($match[1]), $matches, PREG_SET_ORDER)) {
- throw new \InvalidArgumentException(sprintf('Unknown style "%s".', $match[1]));
- }
-
- $parameters = array();
- foreach ($matches as $match) {
- $parameters[$match[1]] = $match[2];
- }
- }
-
- $codes = array();
-
- if (isset($parameters['fg'])) {
- $codes[] = static::$foreground[$parameters['fg']];
- }
-
- if (isset($parameters['bg'])) {
- $codes[] = static::$background[$parameters['bg']];
- }
-
- foreach (static::$options as $option => $value) {
- if (isset($parameters[$option]) && $parameters[$option]) {
- $codes[] = $value;
- }
- }
-
- return "\033[".implode(';', $codes).'m';
- }
-
- protected function replaceEndStyle($match)
- {
- if (!$this->decorated) {
- return '';
- }
-
- return "\033[0m";
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Output/OutputInterface.php b/lib/vendor/Symfony/Component/Console/Output/OutputInterface.php
deleted file mode 100644
index 289f4b428..000000000
--- a/lib/vendor/Symfony/Component/Console/Output/OutputInterface.php
+++ /dev/null
@@ -1,45 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * OutputInterface is the interface implemented by all Output classes.
- *
- * @author Fabien Potencier
- */
-interface OutputInterface
-{
- /**
- * Writes a message to the output.
- *
- * @param string|array $messages The message as an array of lines of a single string
- * @param Boolean $newline Whether to add a newline or not
- * @param integer $type The type of output
- *
- * @throws \InvalidArgumentException When unknown output type is given
- */
- function write($messages, $newline = false, $type = 0);
-
- /**
- * Sets the verbosity of the output.
- *
- * @param integer $level The level of verbosity
- */
- function setVerbosity($level);
-
- /**
- * Sets the decorated flag.
- *
- * @param Boolean $decorated Whether to decorated the messages or not
- */
- function setDecorated($decorated);
-}
diff --git a/lib/vendor/Symfony/Component/Console/Output/StreamOutput.php b/lib/vendor/Symfony/Component/Console/Output/StreamOutput.php
deleted file mode 100644
index 55805c729..000000000
--- a/lib/vendor/Symfony/Component/Console/Output/StreamOutput.php
+++ /dev/null
@@ -1,105 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * StreamOutput writes the output to a given stream.
- *
- * Usage:
- *
- * $output = new StreamOutput(fopen('php://stdout', 'w'));
- *
- * As `StreamOutput` can use any stream, you can also use a file:
- *
- * $output = new StreamOutput(fopen('/path/to/output.log', 'a', false));
- *
- * @author Fabien Potencier
- */
-class StreamOutput extends Output
-{
- protected $stream;
-
- /**
- * Constructor.
- *
- * @param mixed $stream A stream resource
- * @param integer $verbosity The verbosity level (self::VERBOSITY_QUIET, self::VERBOSITY_NORMAL, self::VERBOSITY_VERBOSE)
- * @param Boolean $decorated Whether to decorate messages or not (null for auto-guessing)
- *
- * @throws \InvalidArgumentException When first argument is not a real stream
- */
- public function __construct($stream, $verbosity = self::VERBOSITY_NORMAL, $decorated = null)
- {
- if (!is_resource($stream) || 'stream' !== get_resource_type($stream)) {
- throw new \InvalidArgumentException('The StreamOutput class needs a stream as its first argument.');
- }
-
- $this->stream = $stream;
-
- if (null === $decorated) {
- $decorated = $this->hasColorSupport($decorated);
- }
-
- parent::__construct($verbosity, $decorated);
- }
-
- /**
- * Gets the stream attached to this StreamOutput instance.
- *
- * @return resource A stream resource
- */
- public function getStream()
- {
- return $this->stream;
- }
-
- /**
- * Writes a message to the output.
- *
- * @param string $message A message to write to the output
- * @param Boolean $newline Whether to add a newline or not
- *
- * @throws \RuntimeException When unable to write output (should never happen)
- */
- public function doWrite($message, $newline)
- {
- if (false === @fwrite($this->stream, $message.($newline ? PHP_EOL : ''))) {
- // @codeCoverageIgnoreStart
- // should never happen
- throw new \RuntimeException('Unable to write output.');
- // @codeCoverageIgnoreEnd
- }
-
- flush();
- }
-
- /**
- * Returns true if the stream supports colorization.
- *
- * Colorization is disabled if not supported by the stream:
- *
- * - windows without ansicon
- * - non tty consoles
- *
- * @return Boolean true if the stream supports colorization, false otherwise
- */
- protected function hasColorSupport()
- {
- // @codeCoverageIgnoreStart
- if (DIRECTORY_SEPARATOR == '\\') {
- return false !== getenv('ANSICON');
- } else {
- return function_exists('posix_isatty') && @posix_isatty($this->stream);
- }
- // @codeCoverageIgnoreEnd
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Shell.php b/lib/vendor/Symfony/Component/Console/Shell.php
deleted file mode 100644
index 38b2fbbfe..000000000
--- a/lib/vendor/Symfony/Component/Console/Shell.php
+++ /dev/null
@@ -1,136 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * A Shell wraps an Application to add shell capabilities to it.
- *
- * This class only works with a PHP compiled with readline support
- * (either --with-readline or --with-libedit)
- *
- * @author Fabien Potencier
- */
-class Shell
-{
- protected $application;
- protected $history;
- protected $output;
-
- /**
- * Constructor.
- *
- * If there is no readline support for the current PHP executable
- * a \RuntimeException exception is thrown.
- *
- * @param Application $application An application instance
- *
- * @throws \RuntimeException When Readline extension is not enabled
- */
- public function __construct(Application $application)
- {
- if (!function_exists('readline')) {
- throw new \RuntimeException('Unable to start the shell as the Readline extension is not enabled.');
- }
-
- $this->application = $application;
- $this->history = getenv('HOME').'/.history_'.$application->getName();
- $this->output = new ConsoleOutput();
- }
-
- /**
- * Runs the shell.
- */
- public function run()
- {
- $this->application->setAutoExit(false);
- $this->application->setCatchExceptions(true);
-
- readline_read_history($this->history);
- readline_completion_function(array($this, 'autocompleter'));
-
- $this->output->writeln($this->getHeader());
- while (true) {
- $command = readline($this->application->getName().' > ');
-
- if (false === $command) {
- $this->output->writeln("\n");
-
- break;
- }
-
- readline_add_history($command);
- readline_write_history($this->history);
-
- if (0 !== $ret = $this->application->run(new StringInput($command), $this->output)) {
- $this->output->writeln(sprintf('The command terminated with an error status (%s)', $ret));
- }
- }
- }
-
- /**
- * Tries to return autocompletion for the current entered text.
- *
- * @param string $text The last segment of the entered text
- * @param integer $position The current position
- */
- protected function autocompleter($text, $position)
- {
- $info = readline_info();
- $text = substr($info['line_buffer'], 0, $info['end']);
-
- if ($info['point'] !== $info['end']) {
- return true;
- }
-
- // task name?
- if (false === strpos($text, ' ') || !$text) {
- return array_keys($this->application->all());
- }
-
- // options and arguments?
- try {
- $command = $this->application->findCommand(substr($text, 0, strpos($text, ' ')));
- } catch (\Exception $e) {
- return true;
- }
-
- $list = array('--help');
- foreach ($command->getDefinition()->getOptions() as $option) {
- $list[] = '--'.$option->getName();
- }
-
- return $list;
- }
-
- /**
- * Returns the shell header.
- *
- * @return string The header string
- */
- protected function getHeader()
- {
- return <<{$this->application->getName()} shell ({$this->application->getVersion()}).
-
-At the prompt, type help for some help,
-or list to get a list available commands.
-
-To exit the shell, type ^D.
-
-EOF;
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Tester/ApplicationTester.php b/lib/vendor/Symfony/Component/Console/Tester/ApplicationTester.php
deleted file mode 100644
index b7092470b..000000000
--- a/lib/vendor/Symfony/Component/Console/Tester/ApplicationTester.php
+++ /dev/null
@@ -1,101 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * @author Fabien Potencier
- */
-class ApplicationTester
-{
- protected $application;
- protected $display;
- protected $input;
- protected $output;
-
- /**
- * Constructor.
- *
- * @param Application $application A Application instance to test.
- */
- public function __construct(Application $application)
- {
- $this->application = $application;
- }
-
- /**
- * Executes the application.
- *
- * Available options:
- *
- * * interactive: Sets the input interactive flag
- * * decorated: Sets the output decorated flag
- * * verbosity: Sets the output verbosity flag
- *
- * @param array $input An array of arguments and options
- * @param array $options An array of options
- */
- public function run(array $input, $options = array())
- {
- $this->input = new ArrayInput($input);
- if (isset($options['interactive'])) {
- $this->input->setInteractive($options['interactive']);
- }
-
- $this->output = new StreamOutput(fopen('php://memory', 'w', false));
- if (isset($options['decorated'])) {
- $this->output->setDecorated($options['decorated']);
- }
- if (isset($options['verbosity'])) {
- $this->output->setVerbosity($options['verbosity']);
- }
-
- $ret = $this->application->run($this->input, $this->output);
-
- rewind($this->output->getStream());
-
- return $this->display = stream_get_contents($this->output->getStream());
- }
-
- /**
- * Gets the display returned by the last execution of the application.
- *
- * @return string The display
- */
- public function getDisplay()
- {
- return $this->display;
- }
-
- /**
- * Gets the input instance used by the last execution of the application.
- *
- * @return InputInterface The current input instance
- */
- public function getInput()
- {
- return $this->input;
- }
-
- /**
- * Gets the output instance used by the last execution of the application.
- *
- * @return OutputInterface The current output instance
- */
- public function getOutput()
- {
- return $this->output;
- }
-}
diff --git a/lib/vendor/Symfony/Component/Console/Tester/CommandTester.php b/lib/vendor/Symfony/Component/Console/Tester/CommandTester.php
deleted file mode 100644
index 8c971c0c0..000000000
--- a/lib/vendor/Symfony/Component/Console/Tester/CommandTester.php
+++ /dev/null
@@ -1,101 +0,0 @@
-
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
-
-/**
- * @author Fabien Potencier
- */
-class CommandTester
-{
- protected $command;
- protected $display;
- protected $input;
- protected $output;
-
- /**
- * Constructor.
- *
- * @param Command $command A Command instance to test.
- */
- public function __construct(Command $command)
- {
- $this->command = $command;
- }
-
- /**
- * Executes the command.
- *
- * Available options:
- *
- * * interactive: Sets the input interactive flag
- * * decorated: Sets the output decorated flag
- * * verbosity: Sets the output verbosity flag
- *
- * @param array $input An array of arguments and options
- * @param array $options An array of options
- */
- public function execute(array $input, array $options = array())
- {
- $this->input = new ArrayInput($input);
- if (isset($options['interactive'])) {
- $this->input->setInteractive($options['interactive']);
- }
-
- $this->output = new StreamOutput(fopen('php://memory', 'w', false));
- if (isset($options['decorated'])) {
- $this->output->setDecorated($options['decorated']);
- }
- if (isset($options['verbosity'])) {
- $this->output->setVerbosity($options['verbosity']);
- }
-
- $ret = $this->command->run($this->input, $this->output);
-
- rewind($this->output->getStream());
-
- return $this->display = stream_get_contents($this->output->getStream());
- }
-
- /**
- * Gets the display returned by the last execution of the command.
- *
- * @return string The display
- */
- public function getDisplay()
- {
- return $this->display;
- }
-
- /**
- * Gets the input instance used by the last execution of the command.
- *
- * @return InputInterface The current input instance
- */
- public function getInput()
- {
- return $this->input;
- }
-
- /**
- * Gets the output instance used by the last execution of the command.
- *
- * @return OutputInterface The current output instance
- */
- public function getOutput()
- {
- return $this->output;
- }
-}
diff --git a/lib/vendor/Symfony/Component/Yaml b/lib/vendor/Symfony/Component/Yaml
new file mode 160000
index 000000000..0603a77ab
--- /dev/null
+++ b/lib/vendor/Symfony/Component/Yaml
@@ -0,0 +1 @@
+Subproject commit 0603a77abada52469a7b889124dae57618441613
diff --git a/lib/vendor/Symfony/Component/Yaml/Dumper.php b/lib/vendor/Symfony/Component/Yaml/Dumper.php
deleted file mode 100644
index 4a29d8b6c..000000000
--- a/lib/vendor/Symfony/Component/Yaml/Dumper.php
+++ /dev/null
@@ -1,59 +0,0 @@
-
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-/**
- * Dumper dumps PHP variables to YAML strings.
- *
- * @package symfony
- * @subpackage yaml
- * @author Fabien Potencier
- */
-class Dumper
-{
- /**
- * Dumps a PHP value to YAML.
- *
- * @param mixed $input The PHP value
- * @param integer $inline The level where you switch to inline YAML
- * @param integer $indent The level o indentation indentation (used internally)
- *
- * @return string The YAML representation of the PHP value
- */
- public function dump($input, $inline = 0, $indent = 0)
- {
- $output = '';
- $prefix = $indent ? str_repeat(' ', $indent) : '';
-
- if ($inline <= 0 || !is_array($input) || empty($input))
- {
- $output .= $prefix.Inline::dump($input);
- }
- else
- {
- $isAHash = array_keys($input) !== range(0, count($input) - 1);
-
- foreach ($input as $key => $value)
- {
- $willBeInlined = $inline - 1 <= 0 || !is_array($value) || empty($value);
-
- $output .= sprintf('%s%s%s%s',
- $prefix,
- $isAHash ? Inline::dump($key).':' : '-',
- $willBeInlined ? ' ' : "\n",
- $this->dump($value, $inline - 1, $willBeInlined ? 0 : $indent + 2)
- ).($willBeInlined ? "\n" : '');
- }
- }
-
- return $output;
- }
-}
diff --git a/lib/vendor/Symfony/Component/Yaml/Exception.php b/lib/vendor/Symfony/Component/Yaml/Exception.php
deleted file mode 100644
index c116c91a8..000000000
--- a/lib/vendor/Symfony/Component/Yaml/Exception.php
+++ /dev/null
@@ -1,23 +0,0 @@
-
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-/**
- * Exception class used by all exceptions thrown by the component.
- *
- * @package symfony
- * @subpackage yaml
- * @author Fabien Potencier
- */
-class Exception extends \Exception
-{
-}
diff --git a/lib/vendor/Symfony/Component/Yaml/Inline.php b/lib/vendor/Symfony/Component/Yaml/Inline.php
deleted file mode 100644
index 9159d00c5..000000000
--- a/lib/vendor/Symfony/Component/Yaml/Inline.php
+++ /dev/null
@@ -1,410 +0,0 @@
-
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-/**
- * Inline implements a YAML parser/dumper for the YAML inline syntax.
- *
- * @package symfony
- * @subpackage yaml
- * @author Fabien Potencier
- */
-class Inline
-{
- const REGEX_QUOTED_STRING = '(?:"([^"\\\\]*(?:\\\\.[^"\\\\]*)*)"|\'([^\']*(?:\'\'[^\']*)*)\')';
-
- /**
- * Convert a YAML string to a PHP array.
- *
- * @param string $value A YAML string
- *
- * @return array A PHP array representing the YAML string
- */
- static public function load($value)
- {
- $value = trim($value);
-
- if (0 == strlen($value))
- {
- return '';
- }
-
- switch ($value[0])
- {
- case '[':
- return self::parseSequence($value);
- case '{':
- return self::parseMapping($value);
- default:
- return self::parseScalar($value);
- }
- }
-
- /**
- * Dumps a given PHP variable to a YAML string.
- *
- * @param mixed $value The PHP variable to convert
- *
- * @return string The YAML string representing the PHP array
- */
- static public function dump($value)
- {
- $trueValues = '1.1' == Yaml::getSpecVersion() ? array('true', 'on', '+', 'yes', 'y') : array('true');
- $falseValues = '1.1' == Yaml::getSpecVersion() ? array('false', 'off', '-', 'no', 'n') : array('false');
-
- switch (true)
- {
- case is_resource($value):
- throw new Exception('Unable to dump PHP resources in a YAML file.');
- case is_object($value):
- return '!!php/object:'.serialize($value);
- case is_array($value):
- return self::dumpArray($value);
- case null === $value:
- return 'null';
- case true === $value:
- return 'true';
- case false === $value:
- return 'false';
- case ctype_digit($value):
- return is_string($value) ? "'$value'" : (int) $value;
- case is_numeric($value):
- return is_infinite($value) ? str_ireplace('INF', '.Inf', strval($value)) : (is_string($value) ? "'$value'" : $value);
- case false !== strpos($value, "\n") || false !== strpos($value, "\r"):
- return sprintf('"%s"', str_replace(array('"', "\n", "\r"), array('\\"', '\n', '\r'), $value));
- case preg_match('/[ \s \' " \: \{ \} \[ \] , & \* \# \?] | \A[ - ? | < > = ! % @ ` ]/x', $value):
- return sprintf("'%s'", str_replace('\'', '\'\'', $value));
- case '' == $value:
- return "''";
- case preg_match(self::getTimestampRegex(), $value):
- return "'$value'";
- case in_array(strtolower($value), $trueValues):
- return "'$value'";
- case in_array(strtolower($value), $falseValues):
- return "'$value'";
- case in_array(strtolower($value), array('null', '~')):
- return "'$value'";
- default:
- return $value;
- }
- }
-
- /**
- * Dumps a PHP array to a YAML string.
- *
- * @param array $value The PHP array to dump
- *
- * @return string The YAML string representing the PHP array
- */
- static protected function dumpArray($value)
- {
- // array
- $keys = array_keys($value);
- if (
- (1 == count($keys) && '0' == $keys[0])
- ||
- (count($keys) > 1 && array_reduce($keys, function ($v, $w) { return (integer) $v + $w; }, 0) == count($keys) * (count($keys) - 1) / 2))
- {
- $output = array();
- foreach ($value as $val)
- {
- $output[] = self::dump($val);
- }
-
- return sprintf('[%s]', implode(', ', $output));
- }
-
- // mapping
- $output = array();
- foreach ($value as $key => $val)
- {
- $output[] = sprintf('%s: %s', self::dump($key), self::dump($val));
- }
-
- return sprintf('{ %s }', implode(', ', $output));
- }
-
- /**
- * Parses a scalar to a YAML string.
- *
- * @param scalar $scalar
- * @param string $delimiters
- * @param array $stringDelimiter
- * @param integer $i
- * @param boolean $evaluate
- *
- * @return string A YAML string
- */
- static public function parseScalar($scalar, $delimiters = null, $stringDelimiters = array('"', "'"), &$i = 0, $evaluate = true)
- {
- if (in_array($scalar[$i], $stringDelimiters))
- {
- // quoted scalar
- $output = self::parseQuotedScalar($scalar, $i);
- }
- else
- {
- // "normal" string
- if (!$delimiters)
- {
- $output = substr($scalar, $i);
- $i += strlen($output);
-
- // remove comments
- if (false !== $strpos = strpos($output, ' #'))
- {
- $output = rtrim(substr($output, 0, $strpos));
- }
- }
- else if (preg_match('/^(.+?)('.implode('|', $delimiters).')/', substr($scalar, $i), $match))
- {
- $output = $match[1];
- $i += strlen($output);
- }
- else
- {
- throw new ParserException(sprintf('Malformed inline YAML string (%s).', $scalar));
- }
-
- $output = $evaluate ? self::evaluateScalar($output) : $output;
- }
-
- return $output;
- }
-
- /**
- * Parses a quoted scalar to YAML.
- *
- * @param string $scalar
- * @param integer $i
- *
- * @return string A YAML string
- */
- static protected function parseQuotedScalar($scalar, &$i)
- {
- if (!preg_match('/'.self::REGEX_QUOTED_STRING.'/A', substr($scalar, $i), $match))
- {
- throw new ParserException(sprintf('Malformed inline YAML string (%s).', substr($scalar, $i)));
- }
-
- $output = substr($match[0], 1, strlen($match[0]) - 2);
-
- if ('"' == $scalar[$i])
- {
- // evaluate the string
- $output = str_replace(array('\\"', '\\n', '\\r'), array('"', "\n", "\r"), $output);
- }
- else
- {
- // unescape '
- $output = str_replace('\'\'', '\'', $output);
- }
-
- $i += strlen($match[0]);
-
- return $output;
- }
-
- /**
- * Parses a sequence to a YAML string.
- *
- * @param string $sequence
- * @param integer $i
- *
- * @return string A YAML string
- */
- static protected function parseSequence($sequence, &$i = 0)
- {
- $output = array();
- $len = strlen($sequence);
- $i += 1;
-
- // [foo, bar, ...]
- while ($i < $len)
- {
- switch ($sequence[$i])
- {
- case '[':
- // nested sequence
- $output[] = self::parseSequence($sequence, $i);
- break;
- case '{':
- // nested mapping
- $output[] = self::parseMapping($sequence, $i);
- break;
- case ']':
- return $output;
- case ',':
- case ' ':
- break;
- default:
- $isQuoted = in_array($sequence[$i], array('"', "'"));
- $value = self::parseScalar($sequence, array(',', ']'), array('"', "'"), $i);
-
- if (!$isQuoted && false !== strpos($value, ': '))
- {
- // embedded mapping?
- try
- {
- $value = self::parseMapping('{'.$value.'}');
- }
- catch (\InvalidArgumentException $e)
- {
- // no, it's not
- }
- }
-
- $output[] = $value;
-
- --$i;
- }
-
- ++$i;
- }
-
- throw new ParserException(sprintf('Malformed inline YAML string %s', $sequence));
- }
-
- /**
- * Parses a mapping to a YAML string.
- *
- * @param string $mapping
- * @param integer $i
- *
- * @return string A YAML string
- */
- static protected function parseMapping($mapping, &$i = 0)
- {
- $output = array();
- $len = strlen($mapping);
- $i += 1;
-
- // {foo: bar, bar:foo, ...}
- while ($i < $len)
- {
- switch ($mapping[$i])
- {
- case ' ':
- case ',':
- ++$i;
- continue 2;
- case '}':
- return $output;
- }
-
- // key
- $key = self::parseScalar($mapping, array(':', ' '), array('"', "'"), $i, false);
-
- // value
- $done = false;
- while ($i < $len)
- {
- switch ($mapping[$i])
- {
- case '[':
- // nested sequence
- $output[$key] = self::parseSequence($mapping, $i);
- $done = true;
- break;
- case '{':
- // nested mapping
- $output[$key] = self::parseMapping($mapping, $i);
- $done = true;
- break;
- case ':':
- case ' ':
- break;
- default:
- $output[$key] = self::parseScalar($mapping, array(',', '}'), array('"', "'"), $i);
- $done = true;
- --$i;
- }
-
- ++$i;
-
- if ($done)
- {
- continue 2;
- }
- }
- }
-
- throw new ParserException(sprintf('Malformed inline YAML string %s', $mapping));
- }
-
- /**
- * Evaluates scalars and replaces magic values.
- *
- * @param string $scalar
- *
- * @return string A YAML string
- */
- static protected function evaluateScalar($scalar)
- {
- $scalar = trim($scalar);
-
- $trueValues = '1.1' == Yaml::getSpecVersion() ? array('true', 'on', '+', 'yes', 'y') : array('true');
- $falseValues = '1.1' == Yaml::getSpecVersion() ? array('false', 'off', '-', 'no', 'n') : array('false');
-
- switch (true)
- {
- case 'null' == strtolower($scalar):
- case '' == $scalar:
- case '~' == $scalar:
- return null;
- case 0 === strpos($scalar, '!str'):
- return (string) substr($scalar, 5);
- case 0 === strpos($scalar, '! '):
- return intval(self::parseScalar(substr($scalar, 2)));
- case 0 === strpos($scalar, '!!php/object:'):
- return unserialize(substr($scalar, 13));
- case ctype_digit($scalar):
- $raw = $scalar;
- $cast = intval($scalar);
- return '0' == $scalar[0] ? octdec($scalar) : (((string) $raw == (string) $cast) ? $cast : $raw);
- case in_array(strtolower($scalar), $trueValues):
- return true;
- case in_array(strtolower($scalar), $falseValues):
- return false;
- case is_numeric($scalar):
- return '0x' == $scalar[0].$scalar[1] ? hexdec($scalar) : floatval($scalar);
- case 0 == strcasecmp($scalar, '.inf'):
- case 0 == strcasecmp($scalar, '.NaN'):
- return -log(0);
- case 0 == strcasecmp($scalar, '-.inf'):
- return log(0);
- case preg_match('/^(-|\+)?[0-9,]+(\.[0-9]+)?$/', $scalar):
- return floatval(str_replace(',', '', $scalar));
- case preg_match(self::getTimestampRegex(), $scalar):
- return strtotime($scalar);
- default:
- return (string) $scalar;
- }
- }
-
- static protected function getTimestampRegex()
- {
- return <<[0-9][0-9][0-9][0-9])
- -(?P[0-9][0-9]?)
- -(?P[0-9][0-9]?)
- (?:(?:[Tt]|[ \t]+)
- (?P[0-9][0-9]?)
- :(?P[0-9][0-9])
- :(?P[0-9][0-9])
- (?:\.(?P[0-9]*))?
- (?:[ \t]*(?PZ|(?P[-+])(?P[0-9][0-9]?)
- (?::(?P[0-9][0-9]))?))?)?
- $~x
-EOF;
- }
-}
diff --git a/lib/vendor/Symfony/Component/Yaml/Parser.php b/lib/vendor/Symfony/Component/Yaml/Parser.php
deleted file mode 100644
index c8c39edb4..000000000
--- a/lib/vendor/Symfony/Component/Yaml/Parser.php
+++ /dev/null
@@ -1,587 +0,0 @@
-
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-/**
- * Parser parses YAML strings to convert them to PHP arrays.
- *
- * @package symfony
- * @subpackage yaml
- * @author Fabien Potencier
- */
-class Parser
-{
- protected $offset = 0;
- protected $lines = array();
- protected $currentLineNb = -1;
- protected $currentLine = '';
- protected $refs = array();
-
- /**
- * Constructor
- *
- * @param integer $offset The offset of YAML document (used for line numbers in error messages)
- */
- public function __construct($offset = 0)
- {
- $this->offset = $offset;
- }
-
- /**
- * Parses a YAML string to a PHP value.
- *
- * @param string $value A YAML string
- *
- * @return mixed A PHP value
- *
- * @throws \InvalidArgumentException If the YAML is not valid
- */
- public function parse($value)
- {
- $this->currentLineNb = -1;
- $this->currentLine = '';
- $this->lines = explode("\n", $this->cleanup($value));
-
- $data = array();
- while ($this->moveToNextLine())
- {
- if ($this->isCurrentLineEmpty())
- {
- continue;
- }
-
- // tab?
- if (preg_match('#^\t+#', $this->currentLine))
- {
- throw new ParserException(sprintf('A YAML file cannot contain tabs as indentation at line %d (%s).', $this->getRealCurrentLineNb() + 1, $this->currentLine));
- }
-
- $isRef = $isInPlace = $isProcessed = false;
- if (preg_match('#^\-((?P\s+)(?P.+?))?\s*$#', $this->currentLine, $values))
- {
- if (isset($values['value']) && preg_match('#^&(?P[[^ ]+) *(?P.*)#', $values['value'], $matches))
- {
- $isRef = $matches['ref'];
- $values['value'] = $matches['value'];
- }
-
- // array
- if (!isset($values['value']) || '' == trim($values['value'], ' ') || 0 === strpos(ltrim($values['value'], ' '), '#'))
- {
- $c = $this->getRealCurrentLineNb() + 1;
- $parser = new Parser($c);
- $parser->refs =& $this->refs;
- $data[] = $parser->parse($this->getNextEmbedBlock());
- }
- else
- {
- if (isset($values['leadspaces'])
- && ' ' == $values['leadspaces']
- && preg_match('#^(?P'.Inline::REGEX_QUOTED_STRING.'|[^ \'"\{].*?) *\:(\s+(?P.+?))?\s*$#', $values['value'], $matches))
- {
- // this is a compact notation element, add to next block and parse
- $c = $this->getRealCurrentLineNb();
- $parser = new Parser($c);
- $parser->refs =& $this->refs;
-
- $block = $values['value'];
- if (!$this->isNextLineIndented())
- {
- $block .= "\n".$this->getNextEmbedBlock($this->getCurrentLineIndentation() + 2);
- }
-
- $data[] = $parser->parse($block);
- }
- else
- {
- $data[] = $this->parseValue($values['value']);
- }
- }
- }
- else if (preg_match('#^(?P'.Inline::REGEX_QUOTED_STRING.'|[^ \'"].*?) *\:(\s+(?P.+?))?\s*$#', $this->currentLine, $values))
- {
- $key = Inline::parseScalar($values['key']);
-
- if ('<<' === $key)
- {
- if (isset($values['value']) && '*' === substr($values['value'], 0, 1))
- {
- $isInPlace = substr($values['value'], 1);
- if (!array_key_exists($isInPlace, $this->refs))
- {
- throw new ParserException(sprintf('Reference "%s" does not exist at line %s (%s).', $isInPlace, $this->getRealCurrentLineNb() + 1, $this->currentLine));
- }
- }
- else
- {
- if (isset($values['value']) && $values['value'] !== '')
- {
- $value = $values['value'];
- }
- else
- {
- $value = $this->getNextEmbedBlock();
- }
- $c = $this->getRealCurrentLineNb() + 1;
- $parser = new Parser($c);
- $parser->refs =& $this->refs;
- $parsed = $parser->parse($value);
-
- $merged = array();
- if (!is_array($parsed))
- {
- throw new ParserException(sprintf("YAML merge keys used with a scalar value instead of an array at line %s (%s)", $this->getRealCurrentLineNb() + 1, $this->currentLine));
- }
- else if (isset($parsed[0]))
- {
- // Numeric array, merge individual elements
- foreach (array_reverse($parsed) as $parsedItem)
- {
- if (!is_array($parsedItem))
- {
- throw new ParserException(sprintf("Merge items must be arrays at line %s (%s).", $this->getRealCurrentLineNb() + 1, $parsedItem));
- }
- $merged = array_merge($parsedItem, $merged);
- }
- }
- else
- {
- // Associative array, merge
- $merged = array_merge($merge, $parsed);
- }
-
- $isProcessed = $merged;
- }
- }
- else if (isset($values['value']) && preg_match('#^&(?P][[^ ]+) *(?P.*)#', $values['value'], $matches))
- {
- $isRef = $matches['ref'];
- $values['value'] = $matches['value'];
- }
-
- if ($isProcessed)
- {
- // Merge keys
- $data = $isProcessed;
- }
- // hash
- else if (!isset($values['value']) || '' == trim($values['value'], ' ') || 0 === strpos(ltrim($values['value'], ' '), '#'))
- {
- // if next line is less indented or equal, then it means that the current value is null
- if ($this->isNextLineIndented())
- {
- $data[$key] = null;
- }
- else
- {
- $c = $this->getRealCurrentLineNb() + 1;
- $parser = new Parser($c);
- $parser->refs =& $this->refs;
- $data[$key] = $parser->parse($this->getNextEmbedBlock());
- }
- }
- else
- {
- if ($isInPlace)
- {
- $data = $this->refs[$isInPlace];
- }
- else
- {
- $data[$key] = $this->parseValue($values['value']);
- }
- }
- }
- else
- {
- // 1-liner followed by newline
- if (2 == count($this->lines) && empty($this->lines[1]))
- {
- $value = Inline::load($this->lines[0]);
- if (is_array($value))
- {
- $first = reset($value);
- if ('*' === substr($first, 0, 1))
- {
- $data = array();
- foreach ($value as $alias)
- {
- $data[] = $this->refs[substr($alias, 1)];
- }
- $value = $data;
- }
- }
-
- return $value;
- }
-
- switch (preg_last_error())
- {
- case PREG_INTERNAL_ERROR:
- $error = 'Internal PCRE error on line';
- break;
- case PREG_BACKTRACK_LIMIT_ERROR:
- $error = 'pcre.backtrack_limit reached on line';
- break;
- case PREG_RECURSION_LIMIT_ERROR:
- $error = 'pcre.recursion_limit reached on line';
- break;
- case PREG_BAD_UTF8_ERROR:
- $error = 'Malformed UTF-8 data on line';
- break;
- case PREG_BAD_UTF8_OFFSET_ERROR:
- $error = 'Offset doesn\'t correspond to the begin of a valid UTF-8 code point on line';
- break;
- default:
- $error = 'Unable to parse line';
- }
-
- throw new ParserException(sprintf('%s %d (%s).', $error, $this->getRealCurrentLineNb() + 1, $this->currentLine));
- }
-
- if ($isRef)
- {
- $this->refs[$isRef] = end($data);
- }
- }
-
- return empty($data) ? null : $data;
- }
-
- /**
- * Returns the current line number (takes the offset into account).
- *
- * @return integer The current line number
- */
- protected function getRealCurrentLineNb()
- {
- return $this->currentLineNb + $this->offset;
- }
-
- /**
- * Returns the current line indentation.
- *
- * @return integer The current line indentation
- */
- protected function getCurrentLineIndentation()
- {
- return strlen($this->currentLine) - strlen(ltrim($this->currentLine, ' '));
- }
-
- /**
- * Returns the next embed block of YAML.
- *
- * @param integer $indentation The indent level at which the block is to be read, or null for default
- *
- * @return string A YAML string
- */
- protected function getNextEmbedBlock($indentation = null)
- {
- $this->moveToNextLine();
-
- if (null === $indentation)
- {
- $newIndent = $this->getCurrentLineIndentation();
-
- if (!$this->isCurrentLineEmpty() && 0 == $newIndent)
- {
- throw new ParserException(sprintf('Indentation problem at line %d (%s)', $this->getRealCurrentLineNb() + 1, $this->currentLine));
- }
- }
- else
- {
- $newIndent = $indentation;
- }
-
- $data = array(substr($this->currentLine, $newIndent));
-
- while ($this->moveToNextLine())
- {
- if ($this->isCurrentLineEmpty())
- {
- if ($this->isCurrentLineBlank())
- {
- $data[] = substr($this->currentLine, $newIndent);
- }
-
- continue;
- }
-
- $indent = $this->getCurrentLineIndentation();
-
- if (preg_match('#^(?P *)$#', $this->currentLine, $match))
- {
- // empty line
- $data[] = $match['text'];
- }
- else if ($indent >= $newIndent)
- {
- $data[] = substr($this->currentLine, $newIndent);
- }
- else if (0 == $indent)
- {
- $this->moveToPreviousLine();
-
- break;
- }
- else
- {
- throw new ParserException(sprintf('Indentation problem at line %d (%s)', $this->getRealCurrentLineNb() + 1, $this->currentLine));
- }
- }
-
- return implode("\n", $data);
- }
-
- /**
- * Moves the parser to the next line.
- */
- protected function moveToNextLine()
- {
- if ($this->currentLineNb >= count($this->lines) - 1)
- {
- return false;
- }
-
- $this->currentLine = $this->lines[++$this->currentLineNb];
-
- return true;
- }
-
- /**
- * Moves the parser to the previous line.
- */
- protected function moveToPreviousLine()
- {
- $this->currentLine = $this->lines[--$this->currentLineNb];
- }
-
- /**
- * Parses a YAML value.
- *
- * @param string $value A YAML value
- *
- * @return mixed A PHP value
- */
- protected function parseValue($value)
- {
- if ('*' === substr($value, 0, 1))
- {
- if (false !== $pos = strpos($value, '#'))
- {
- $value = substr($value, 1, $pos - 2);
- }
- else
- {
- $value = substr($value, 1);
- }
-
- if (!array_key_exists($value, $this->refs))
- {
- throw new ParserException(sprintf('Reference "%s" does not exist (%s).', $value, $this->currentLine));
- }
- return $this->refs[$value];
- }
-
- if (preg_match('/^(?P\||>)(?P\+|\-|\d+|\+\d+|\-\d+|\d+\+|\d+\-)?(?P +#.*)?$/', $value, $matches))
- {
- $modifiers = isset($matches['modifiers']) ? $matches['modifiers'] : '';
-
- return $this->parseFoldedScalar($matches['separator'], preg_replace('#\d+#', '', $modifiers), intval(abs($modifiers)));
- }
- else
- {
- return Inline::load($value);
- }
- }
-
- /**
- * Parses a folded scalar.
- *
- * @param string $separator The separator that was used to begin this folded scalar (| or >)
- * @param string $indicator The indicator that was used to begin this folded scalar (+ or -)
- * @param integer $indentation The indentation that was used to begin this folded scalar
- *
- * @return string The text value
- */
- protected function parseFoldedScalar($separator, $indicator = '', $indentation = 0)
- {
- $separator = '|' == $separator ? "\n" : ' ';
- $text = '';
-
- $notEOF = $this->moveToNextLine();
-
- while ($notEOF && $this->isCurrentLineBlank())
- {
- $text .= "\n";
-
- $notEOF = $this->moveToNextLine();
- }
-
- if (!$notEOF)
- {
- return '';
- }
-
- if (!preg_match('#^(?P'.($indentation ? str_repeat(' ', $indentation) : ' +').')(?P.*)$#', $this->currentLine, $matches))
- {
- $this->moveToPreviousLine();
-
- return '';
- }
-
- $textIndent = $matches['indent'];
- $previousIndent = 0;
-
- $text .= $matches['text'].$separator;
- while ($this->currentLineNb + 1 < count($this->lines))
- {
- $this->moveToNextLine();
-
- if (preg_match('#^(?P {'.strlen($textIndent).',})(?P.+)$#', $this->currentLine, $matches))
- {
- if (' ' == $separator && $previousIndent != $matches['indent'])
- {
- $text = substr($text, 0, -1)."\n";
- }
- $previousIndent = $matches['indent'];
-
- $text .= str_repeat(' ', $diff = strlen($matches['indent']) - strlen($textIndent)).$matches['text'].($diff ? "\n" : $separator);
- }
- else if (preg_match('#^(?P *)$#', $this->currentLine, $matches))
- {
- $text .= preg_replace('#^ {1,'.strlen($textIndent).'}#', '', $matches['text'])."\n";
- }
- else
- {
- $this->moveToPreviousLine();
-
- break;
- }
- }
-
- if (' ' == $separator)
- {
- // replace last separator by a newline
- $text = preg_replace('/ (\n*)$/', "\n$1", $text);
- }
-
- switch ($indicator)
- {
- case '':
- $text = preg_replace('#\n+$#s', "\n", $text);
- break;
- case '+':
- break;
- case '-':
- $text = preg_replace('#\n+$#s', '', $text);
- break;
- }
-
- return $text;
- }
-
- /**
- * Returns true if the next line is indented.
- *
- * @return Boolean Returns true if the next line is indented, false otherwise
- */
- protected function isNextLineIndented()
- {
- $currentIndentation = $this->getCurrentLineIndentation();
- $notEOF = $this->moveToNextLine();
-
- while ($notEOF && $this->isCurrentLineEmpty())
- {
- $notEOF = $this->moveToNextLine();
- }
-
- if (false === $notEOF)
- {
- return false;
- }
-
- $ret = false;
- if ($this->getCurrentLineIndentation() <= $currentIndentation)
- {
- $ret = true;
- }
-
- $this->moveToPreviousLine();
-
- return $ret;
- }
-
- /**
- * Returns true if the current line is blank or if it is a comment line.
- *
- * @return Boolean Returns true if the current line is empty or if it is a comment line, false otherwise
- */
- protected function isCurrentLineEmpty()
- {
- return $this->isCurrentLineBlank() || $this->isCurrentLineComment();
- }
-
- /**
- * Returns true if the current line is blank.
- *
- * @return Boolean Returns true if the current line is blank, false otherwise
- */
- protected function isCurrentLineBlank()
- {
- return '' == trim($this->currentLine, ' ');
- }
-
- /**
- * Returns true if the current line is a comment line.
- *
- * @return Boolean Returns true if the current line is a comment line, false otherwise
- */
- protected function isCurrentLineComment()
- {
- //checking explicitly the first char of the trim is faster than loops or strpos
- $ltrimmedLine = ltrim($this->currentLine, ' ');
- return $ltrimmedLine[0] === '#';
- }
-
- /**
- * Cleanups a YAML string to be parsed.
- *
- * @param string $value The input YAML string
- *
- * @return string A cleaned up YAML string
- */
- protected function cleanup($value)
- {
- $value = str_replace(array("\r\n", "\r"), "\n", $value);
-
- if (!preg_match("#\n$#", $value))
- {
- $value .= "\n";
- }
-
- // strip YAML header
- $count = 0;
- $value = preg_replace('#^\%YAML[: ][\d\.]+.*\n#s', '', $value, -1, $count);
- $this->offset += $count;
-
- // remove leading comments and/or ---
- $trimmedValue = preg_replace('#^((\#.*?\n)|(\-\-\-.*?\n))*#s', '', $value, -1, $count);
- if ($count == 1)
- {
- // items have been removed, update the offset
- $this->offset += substr_count($value, "\n") - substr_count($trimmedValue, "\n");
- $value = $trimmedValue;
- }
-
- return $value;
- }
-}
diff --git a/lib/vendor/Symfony/Component/Yaml/ParserException.php b/lib/vendor/Symfony/Component/Yaml/ParserException.php
deleted file mode 100644
index 5683d8cc6..000000000
--- a/lib/vendor/Symfony/Component/Yaml/ParserException.php
+++ /dev/null
@@ -1,23 +0,0 @@
-
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-/**
- * Exception class used by all exceptions thrown by the component.
- *
- * @package symfony
- * @subpackage yaml
- * @author Fabien Potencier
- */
-class ParserException extends Exception
-{
-}
diff --git a/lib/vendor/Symfony/Component/Yaml/Yaml.php b/lib/vendor/Symfony/Component/Yaml/Yaml.php
deleted file mode 100644
index 7bdc1801f..000000000
--- a/lib/vendor/Symfony/Component/Yaml/Yaml.php
+++ /dev/null
@@ -1,121 +0,0 @@
-
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-/**
- * Yaml offers convenience methods to load and dump YAML.
- *
- * @package symfony
- * @subpackage yaml
- * @author Fabien Potencier
- */
-class Yaml
-{
- static protected $spec = '1.2';
-
- /**
- * Sets the YAML specification version to use.
- *
- * @param string $version The YAML specification version
- */
- static public function setSpecVersion($version)
- {
- if (!in_array($version, array('1.1', '1.2')))
- {
- throw new \InvalidArgumentException(sprintf('Version %s of the YAML specifications is not supported', $version));
- }
-
- self::$spec = $version;
- }
-
- /**
- * Gets the YAML specification version to use.
- *
- * @return string The YAML specification version
- */
- static public function getSpecVersion()
- {
- return self::$spec;
- }
-
- /**
- * Loads YAML into a PHP array.
- *
- * The load method, when supplied with a YAML stream (string or file),
- * will do its best to convert YAML in a file into a PHP array.
- *
- * Usage:
- * ]
- * $array = Yaml::load('config.yml');
- * print_r($array);
- *
- *
- * @param string $input Path of YAML file or string containing YAML
- *
- * @return array The YAML converted to a PHP array
- *
- * @throws \InvalidArgumentException If the YAML is not valid
- */
- public static function load($input)
- {
- $file = '';
-
- // if input is a file, process it
- if (strpos($input, "\n") === false && is_file($input))
- {
- $file = $input;
-
- ob_start();
- $retval = include($input);
- $content = ob_get_clean();
-
- // if an array is returned by the config file assume it's in plain php form else in YAML
- $input = is_array($retval) ? $retval : $content;
- }
-
- // if an array is returned by the config file assume it's in plain php form else in YAML
- if (is_array($input))
- {
- return $input;
- }
-
- $yaml = new Parser();
-
- try
- {
- $ret = $yaml->parse($input);
- }
- catch (\Exception $e)
- {
- throw new \InvalidArgumentException(sprintf('Unable to parse %s: %s', $file ? sprintf('file "%s"', $file) : 'string', $e->getMessage()));
- }
-
- return $ret;
- }
-
- /**
- * Dumps a PHP array to a YAML string.
- *
- * The dump method, when supplied with an array, will do its best
- * to convert the array into friendly YAML.
- *
- * @param array $array PHP array
- * @param integer $inline The level where you switch to inline YAML
- *
- * @return string A YAML string representing the original PHP array
- */
- public static function dump($array, $inline = 2)
- {
- $yaml = new Dumper();
-
- return $yaml->dump($array, $inline);
- }
-}
diff --git a/lib/vendor/doctrine-dbal b/lib/vendor/doctrine-dbal
index ae084d9c6..556351d9d 160000
--- a/lib/vendor/doctrine-dbal
+++ b/lib/vendor/doctrine-dbal
@@ -1 +1 @@
-Subproject commit ae084d9c6975356f8f0f10d8802abe91df45b739
+Subproject commit 556351d9d6b4a33506f2c1535cccee34faa65d62
diff --git a/tests/Doctrine/Tests/Models/ECommerce/ECommerceProduct.php b/tests/Doctrine/Tests/Models/ECommerce/ECommerceProduct.php
index 75f0f17c6..198e16720 100644
--- a/tests/Doctrine/Tests/Models/ECommerce/ECommerceProduct.php
+++ b/tests/Doctrine/Tests/Models/ECommerce/ECommerceProduct.php
@@ -55,6 +55,8 @@ class ECommerceProduct
*/
private $related;
+ public $isCloned = false;
+
public function __construct()
{
$this->features = new ArrayCollection;
@@ -159,4 +161,9 @@ class ECommerceProduct
$related->removeRelated($this);
}
}
+
+ public function __clone()
+ {
+ $this->isCloned = true;
+ }
}
diff --git a/tests/Doctrine/Tests/ORM/Functional/ReferenceProxyTest.php b/tests/Doctrine/Tests/ORM/Functional/ReferenceProxyTest.php
index f144c7885..d37442171 100644
--- a/tests/Doctrine/Tests/ORM/Functional/ReferenceProxyTest.php
+++ b/tests/Doctrine/Tests/ORM/Functional/ReferenceProxyTest.php
@@ -26,7 +26,7 @@ class ReferenceProxyTest extends \Doctrine\Tests\OrmFunctionalTestCase
true);
}
- public function testLazyLoadsFieldValuesFromDatabase()
+ public function createProduct()
{
$product = new ECommerceProduct();
$product->setName('Doctrine Cookbook');
@@ -34,8 +34,13 @@ class ReferenceProxyTest extends \Doctrine\Tests\OrmFunctionalTestCase
$this->_em->flush();
$this->_em->clear();
-
- $id = $product->getId();
+
+ return $product->getId();
+ }
+
+ public function testLazyLoadsFieldValuesFromDatabase()
+ {
+ $id = $this->createProduct();
$productProxy = $this->_factory->getProxy('Doctrine\Tests\Models\ECommerce\ECommerceProduct', array('id' => $id));
$this->assertEquals('Doctrine Cookbook', $productProxy->getName());
@@ -46,9 +51,50 @@ class ReferenceProxyTest extends \Doctrine\Tests\OrmFunctionalTestCase
*/
public function testAccessMetatadaForProxy()
{
- $entity = $this->_em->getReference('Doctrine\Tests\Models\ECommerce\ECommerceProduct' , 1);
+ $id = $this->createProduct();
+
+ $entity = $this->_em->getReference('Doctrine\Tests\Models\ECommerce\ECommerceProduct' , $id);
$class = $this->_em->getClassMetadata(get_class($entity));
$this->assertEquals('Doctrine\Tests\Models\ECommerce\ECommerceProduct', $class->name);
}
+
+ /**
+ * @group DDC-1033
+ */
+ public function testReferenceFind()
+ {
+ $id = $this->createProduct();
+
+ $entity = $this->_em->getReference('Doctrine\Tests\Models\ECommerce\ECommerceProduct' , $id);
+ $entity2 = $this->_em->find('Doctrine\Tests\Models\ECommerce\ECommerceProduct' , $id);
+
+ $this->assertSame($entity, $entity2);
+ $this->assertEquals('Doctrine Cookbook', $entity2->getName());
+ }
+
+ /**
+ * @group DDC-1033
+ */
+ public function testCloneProxy()
+ {
+ $id = $this->createProduct();
+
+ /* @var $entity Doctrine\Tests\Models\ECommerce\ECommerceProduct */
+ $entity = $this->_em->getReference('Doctrine\Tests\Models\ECommerce\ECommerceProduct' , $id);
+
+ /* @var $clone Doctrine\Tests\Models\ECommerce\ECommerceProduct */
+ $clone = clone $entity;
+
+ $this->assertEquals($id, $entity->getId());
+ $this->assertEquals('Doctrine Cookbook', $entity->getName());
+
+ $this->assertFalse($this->_em->contains($clone), "Cloning a reference proxy should return an unmanaged/detached entity.");
+ $this->assertEquals($id, $clone->getId(), "Cloning a reference proxy should return same id.");
+ $this->assertEquals('Doctrine Cookbook', $clone->getName(), "Cloning a reference proxy should return same product name.");
+
+ // domain logic, Product::__clone sets isCloned public property
+ $this->assertTrue($clone->isCloned);
+ $this->assertFalse($entity->isCloned);
+ }
}
diff --git a/tests/Doctrine/Tests/ORM/Functional/ResultCacheTest.php b/tests/Doctrine/Tests/ORM/Functional/ResultCacheTest.php
index 68616f99b..b1b39a7be 100644
--- a/tests/Doctrine/Tests/ORM/Functional/ResultCacheTest.php
+++ b/tests/Doctrine/Tests/ORM/Functional/ResultCacheTest.php
@@ -86,6 +86,35 @@ class ResultCacheTest extends \Doctrine\Tests\OrmFunctionalTestCase
$this->_em->getConfiguration()->setResultCacheImpl(new ArrayCache());
}
+ /**
+ * @group DDC-1026
+ */
+ public function testUseResultCacheParams()
+ {
+ $cache = new \Doctrine\Common\Cache\ArrayCache();
+ $this->_em->getConfiguration()->setResultCacheImpl($cache);
+
+ $sqlCount = count($this->_sqlLoggerStack->queries);
+ $query = $this->_em->createQuery('select ux from Doctrine\Tests\Models\CMS\CmsUser ux WHERE ux.id = ?1');
+ $query->setParameter(1, 1);
+ $query->useResultCache(true);
+ $query->getResult();
+
+ $query->setParameter(1, 2);
+ $query->getResult();
+
+ $this->assertEquals($sqlCount + 2, count($this->_sqlLoggerStack->queries), "Two non-cached queries.");
+
+ $query->setParameter(1, 1);
+ $query->useResultCache(true);
+ $query->getResult();
+
+ $query->setParameter(1, 2);
+ $query->getResult();
+
+ $this->assertEquals($sqlCount + 2, count($this->_sqlLoggerStack->queries), "The next two sql should have been cached, but were not.");
+ }
+
public function testNativeQueryResultCaching()
{
$rsm = new \Doctrine\ORM\Query\ResultSetMapping();
diff --git a/tests/Doctrine/Tests/ORM/Functional/SchemaTool/MySqlSchemaToolTest.php b/tests/Doctrine/Tests/ORM/Functional/SchemaTool/MySqlSchemaToolTest.php
index 22f6eadf3..50e8a95c9 100644
--- a/tests/Doctrine/Tests/ORM/Functional/SchemaTool/MySqlSchemaToolTest.php
+++ b/tests/Doctrine/Tests/ORM/Functional/SchemaTool/MySqlSchemaToolTest.php
@@ -26,10 +26,10 @@ class MySqlSchemaToolTest extends \Doctrine\Tests\OrmFunctionalTestCase
$tool = new SchemaTool($this->_em);
$sql = $tool->getCreateSchemaSql($classes);
- $this->assertEquals("CREATE TABLE cms_addresses (id INT AUTO_INCREMENT NOT NULL, user_id INT DEFAULT NULL, country VARCHAR(50) NOT NULL, zip VARCHAR(50) NOT NULL, city VARCHAR(50) NOT NULL, UNIQUE INDEX cms_addresses_user_id_uniq (user_id), PRIMARY KEY(id)) ENGINE = InnoDB", $sql[0]);
- $this->assertEquals("CREATE TABLE cms_users (id INT AUTO_INCREMENT NOT NULL, status VARCHAR(50) NOT NULL, username VARCHAR(255) NOT NULL, name VARCHAR(255) NOT NULL, UNIQUE INDEX cms_users_username_uniq (username), PRIMARY KEY(id)) ENGINE = InnoDB", $sql[1]);
- $this->assertEquals("CREATE TABLE cms_users_groups (user_id INT NOT NULL, group_id INT NOT NULL, INDEX cms_users_groups_user_id_idx (user_id), INDEX cms_users_groups_group_id_idx (group_id), PRIMARY KEY(user_id, group_id)) ENGINE = InnoDB", $sql[2]);
- $this->assertEquals("CREATE TABLE cms_phonenumbers (phonenumber VARCHAR(50) NOT NULL, user_id INT DEFAULT NULL, INDEX cms_phonenumbers_user_id_idx (user_id), PRIMARY KEY(phonenumber)) ENGINE = InnoDB", $sql[3]);
+ $this->assertEquals("CREATE TABLE cms_addresses (id INT AUTO_INCREMENT NOT NULL, user_id INT DEFAULT NULL, country VARCHAR(50) NOT NULL, zip VARCHAR(50) NOT NULL, city VARCHAR(50) NOT NULL, UNIQUE INDEX UNIQ_ACAC157BA76ED395 (user_id), PRIMARY KEY(id)) ENGINE = InnoDB", $sql[0]);
+ $this->assertEquals("CREATE TABLE cms_users (id INT AUTO_INCREMENT NOT NULL, status VARCHAR(50) NOT NULL, username VARCHAR(255) NOT NULL, name VARCHAR(255) NOT NULL, UNIQUE INDEX UNIQ_3AF03EC5F85E0677 (username), PRIMARY KEY(id)) ENGINE = InnoDB", $sql[1]);
+ $this->assertEquals("CREATE TABLE cms_users_groups (user_id INT NOT NULL, group_id INT NOT NULL, INDEX IDX_7EA9409AA76ED395 (user_id), INDEX IDX_7EA9409AFE54D947 (group_id), PRIMARY KEY(user_id, group_id)) ENGINE = InnoDB", $sql[2]);
+ $this->assertEquals("CREATE TABLE cms_phonenumbers (phonenumber VARCHAR(50) NOT NULL, user_id INT DEFAULT NULL, INDEX IDX_F21F790FA76ED395 (user_id), PRIMARY KEY(phonenumber)) ENGINE = InnoDB", $sql[3]);
$this->assertEquals("ALTER TABLE cms_addresses ADD FOREIGN KEY (user_id) REFERENCES cms_users(id)", $sql[4]);
$this->assertEquals("ALTER TABLE cms_users_groups ADD FOREIGN KEY (user_id) REFERENCES cms_users(id)", $sql[5]);
$this->assertEquals("ALTER TABLE cms_users_groups ADD FOREIGN KEY (group_id) REFERENCES cms_groups(id)", $sql[6]);
diff --git a/tests/Doctrine/Tests/ORM/Functional/SchemaTool/PostgreSqlSchemaToolTest.php b/tests/Doctrine/Tests/ORM/Functional/SchemaTool/PostgreSqlSchemaToolTest.php
index d0b688708..681485251 100644
--- a/tests/Doctrine/Tests/ORM/Functional/SchemaTool/PostgreSqlSchemaToolTest.php
+++ b/tests/Doctrine/Tests/ORM/Functional/SchemaTool/PostgreSqlSchemaToolTest.php
@@ -34,14 +34,14 @@ class PostgreSqlSchemaToolTest extends \Doctrine\Tests\OrmFunctionalTestCase
$sql = $tool->getCreateSchemaSql($classes);
$this->assertEquals("CREATE TABLE cms_addresses (id INT NOT NULL, user_id INT DEFAULT NULL, country VARCHAR(50) NOT NULL, zip VARCHAR(50) NOT NULL, city VARCHAR(50) NOT NULL, PRIMARY KEY(id))", $sql[0]);
- $this->assertEquals("CREATE UNIQUE INDEX cms_addresses_user_id_uniq ON cms_addresses (user_id)", $sql[1]);
+ $this->assertEquals("CREATE UNIQUE INDEX UNIQ_ACAC157BA76ED395 ON cms_addresses (user_id)", $sql[1]);
$this->assertEquals("CREATE TABLE cms_users (id INT NOT NULL, status VARCHAR(50) NOT NULL, username VARCHAR(255) NOT NULL, name VARCHAR(255) NOT NULL, PRIMARY KEY(id))", $sql[2]);
- $this->assertEquals("CREATE UNIQUE INDEX cms_users_username_uniq ON cms_users (username)", $sql[3]);
+ $this->assertEquals("CREATE UNIQUE INDEX UNIQ_3AF03EC5F85E0677 ON cms_users (username)", $sql[3]);
$this->assertEquals("CREATE TABLE cms_users_groups (user_id INT NOT NULL, group_id INT NOT NULL, PRIMARY KEY(user_id, group_id))", $sql[4]);
- $this->assertEquals("CREATE INDEX cms_users_groups_user_id_idx ON cms_users_groups (user_id)", $sql[5]);
- $this->assertEquals("CREATE INDEX cms_users_groups_group_id_idx ON cms_users_groups (group_id)", $sql[6]);
+ $this->assertEquals("CREATE INDEX IDX_7EA9409AA76ED395 ON cms_users_groups (user_id)", $sql[5]);
+ $this->assertEquals("CREATE INDEX IDX_7EA9409AFE54D947 ON cms_users_groups (group_id)", $sql[6]);
$this->assertEquals("CREATE TABLE cms_phonenumbers (phonenumber VARCHAR(50) NOT NULL, user_id INT DEFAULT NULL, PRIMARY KEY(phonenumber))", $sql[7]);
- $this->assertEquals("CREATE INDEX cms_phonenumbers_user_id_idx ON cms_phonenumbers (user_id)", $sql[8]);
+ $this->assertEquals("CREATE INDEX IDX_F21F790FA76ED395 ON cms_phonenumbers (user_id)", $sql[8]);
$this->assertEquals("CREATE SEQUENCE cms_addresses_id_seq INCREMENT BY 1 MINVALUE 1 START 1", $sql[9]);
$this->assertEquals("CREATE SEQUENCE cms_users_id_seq INCREMENT BY 1 MINVALUE 1 START 1", $sql[10]);
$this->assertEquals("ALTER TABLE cms_addresses ADD FOREIGN KEY (user_id) REFERENCES cms_users(id) NOT DEFERRABLE INITIALLY IMMEDIATE", $sql[11]);
diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1041Test.php b/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1041Test.php
new file mode 100644
index 000000000..cf5a5f223
--- /dev/null
+++ b/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC1041Test.php
@@ -0,0 +1,33 @@
+useModelSet('company');
+ parent::setUp();
+ }
+
+ public function testGrabWrongSubtypeReturnsNull()
+ {
+ $fix = new \Doctrine\Tests\Models\Company\CompanyFixContract();
+ $fix->setFixPrice(2000);
+
+ $this->_em->persist($fix);
+ $this->_em->flush();
+
+ $id = $fix->getId();
+
+ $this->assertNull($this->_em->find('Doctrine\Tests\Models\Company\CompanyFlexContract', $id));
+ $this->assertNull($this->_em->getReference('Doctrine\Tests\Models\Company\CompanyFlexContract', $id));
+ $this->assertNull($this->_em->getPartialReference('Doctrine\Tests\Models\Company\CompanyFlexContract', $id));
+ }
+}
\ No newline at end of file
diff --git a/tests/Doctrine/Tests/ORM/Mapping/AnnotationDriverTest.php b/tests/Doctrine/Tests/ORM/Mapping/AnnotationDriverTest.php
index 95d583f53..f02401975 100644
--- a/tests/Doctrine/Tests/ORM/Mapping/AnnotationDriverTest.php
+++ b/tests/Doctrine/Tests/ORM/Mapping/AnnotationDriverTest.php
@@ -149,6 +149,44 @@ class AnnotationDriverTest extends AbstractMappingDriverTest
"mapped superclass 'Doctrine\Tests\ORM\Mapping\InvalidMappedSuperClass#users'");
$usingInvalidMsc = $factory->getMetadataFor('Doctrine\Tests\ORM\Mapping\UsingInvalidMappedSuperClass');
}
+
+ /**
+ * @group DDC-1050
+ */
+ public function testInvalidMappedSuperClassWithInheritanceInformation()
+ {
+ $annotationDriver = $this->_loadDriver();
+
+ $em = $this->_getTestEntityManager();
+ $em->getConfiguration()->setMetadataDriverImpl($annotationDriver);
+ $factory = new \Doctrine\ORM\Mapping\ClassMetadataFactory();
+ $factory->setEntityManager($em);
+
+ $this->setExpectedException('Doctrine\ORM\Mapping\MappingException',
+ "Its not supported to define inheritance information on a mapped ".
+ "superclass 'Doctrine\Tests\ORM\Mapping\MappedSuperClassInheritence'.");
+ $usingInvalidMsc = $factory->getMetadataFor('Doctrine\Tests\ORM\Mapping\MappedSuperClassInheritence');
+ }
+
+ /**
+ * @group DDC-1034
+ */
+ public function testInheritanceSkipsParentLifecycleCallbacks()
+ {
+ $annotationDriver = $this->_loadDriver();
+
+ $cm = new ClassMetadata('Doctrine\Tests\ORM\Mapping\AnnotationChild');
+ $em = $this->_getTestEntityManager();
+ $em->getConfiguration()->setMetadataDriverImpl($annotationDriver);
+ $factory = new \Doctrine\ORM\Mapping\ClassMetadataFactory();
+ $factory->setEntityManager($em);
+
+ $cm = $factory->getMetadataFor('Doctrine\Tests\ORM\Mapping\AnnotationChild');
+ $this->assertEquals(array("postLoad" => array("postLoad"), "preUpdate" => array("preUpdate")), $cm->lifecycleCallbacks);
+
+ $cm = $factory->getMetadataFor('Doctrine\Tests\ORM\Mapping\AnnotationParent');
+ $this->assertEquals(array("postLoad" => array("postLoad"), "preUpdate" => array("preUpdate")), $cm->lifecycleCallbacks);
+ }
}
/**
@@ -180,4 +218,53 @@ class UsingInvalidMappedSuperClass extends InvalidMappedSuperClass
* @Id @Column(type="integer") @GeneratedValue
*/
private $id;
+}
+
+/**
+ * @MappedSuperclass
+ * @InheritanceType("JOINED")
+ * @DiscriminatorMap({"test" = "ColumnWithoutType"})
+ */
+class MappedSuperClassInheritence
+{
+
+}
+
+/**
+ * @Entity
+ * @InheritanceType("JOINED")
+ * @DiscriminatorMap({"parent" = "AnnotationParent", "child" = "AnnotationChild"})
+ * @HasLifecycleCallbacks
+ */
+class AnnotationParent
+{
+ /**
+ * @Id @Column(type="integer") @GeneratedValue
+ */
+ private $id;
+
+ /**
+ * @PostLoad
+ */
+ public function postLoad()
+ {
+
+ }
+
+ /**
+ * @PreUpdate
+ */
+ public function preUpdate()
+ {
+
+ }
+}
+
+/**
+ * @Entity
+ * @HasLifecycleCallbacks
+ */
+class AnnotationChild extends AnnotationParent
+{
+
}
\ No newline at end of file
diff --git a/tests/Doctrine/Tests/ORM/Tools/SchemaToolTest.php b/tests/Doctrine/Tests/ORM/Tools/SchemaToolTest.php
index ad4551515..f38de01b7 100644
--- a/tests/Doctrine/Tests/ORM/Tools/SchemaToolTest.php
+++ b/tests/Doctrine/Tests/ORM/Tools/SchemaToolTest.php
@@ -28,12 +28,8 @@ class SchemaToolTest extends \Doctrine\Tests\OrmTestCase
$schema = $schemaTool->getSchemaFromMetadata($classes);
- $this->assertTrue($schema->hasTable('cms_users'));
- $this->assertTrue($schema->getTable('cms_users')->hasIndex('cms_users_username_uniq'));
- $this->assertEquals(
- array('username'),
- array_map('strtolower', $schema->getTable('cms_users')->getIndex('cms_users_username_uniq')->getColumns())
- );
+ $this->assertTrue($schema->hasTable('cms_users'), "Table cms_users should exist.");
+ $this->assertTrue($schema->getTable('cms_users')->columnsAreIndexed(array('username')), "username column should be indexed.");
}
/**