diff --git a/B8Framework/b8/Form/View/Checkbox.phtml b/B8Framework/b8/Form/View/Checkbox.phtml index bf1de6c7..cd6731a8 100755 --- a/B8Framework/b8/Form/View/Checkbox.phtml +++ b/B8Framework/b8/Form/View/Checkbox.phtml @@ -15,4 +15,3 @@ - diff --git a/PHPCI/Plugin/Util/Factory.php b/PHPCI/Plugin/Util/Factory.php index b6d11e5e..48bc564d 100644 --- a/PHPCI/Plugin/Util/Factory.php +++ b/PHPCI/Plugin/Util/Factory.php @@ -2,6 +2,8 @@ namespace PHPCI\Plugin\Util; +use Pimple\Container; + /** * Plugin Factory - Loads Plugins and passes required dependencies. * @package PHPCI\Plugin\Util @@ -15,19 +17,19 @@ class Factory private $currentPluginOptions; /** - * @var \Pimple + * @var Container */ private $container; /** - * @param \Pimple $container + * @param Container $container */ - public function __construct(\Pimple $container = null) + public function __construct(Container $container = null) { if ($container) { $this->container = $container; } else { - $this->container = new \Pimple(); + $this->container = new Container(); } $self = $this; diff --git a/composer.json b/composer.json index b8b10020..202d2791 100644 --- a/composer.json +++ b/composer.json @@ -1,81 +1,74 @@ { - "name" : "block8/phpci", - "description" : "Simple continuous integration for PHP projects.", + "name": "block8/phpci", + "description": "Simple continuous integration for PHP projects.", "minimum-stability": "stable", - "type" : "library", - "keywords" : ["php", "phpci", "ci", "continuous", "integration", "testing", "phpunit", "continuous integration", "jenkins", "travis"], - "homepage" : "http://www.phptesting.org/", - "license" : "BSD-2-Clause", - + "type": "library", + "keywords": ["php", "phpci", "ci", "continuous", "integration", "testing", "phpunit", "continuous integration", "jenkins", "travis"], + "homepage": "http://www.phptesting.org/", + "license": "BSD-2-Clause", "authors": [ { - "name" : "Dan Cryer", - "email" : "dan.cryer@block8.co.uk", + "name": "Dan Cryer", + "email": "dan.cryer@block8.co.uk", "homepage": "http://www.block8.co.uk", - "role" : "Developer" + "role": "Developer" } ], - "support": { - "email" : "hello+phpci@block8.co.uk", + "email": "hello+phpci@block8.co.uk", "issues": "https://github.com/Block8/PHPCI/issues", "source": "https://github.com/Block8/PHPCI" }, - "autoload": { "psr-4": { "PHPCI\\": "PHPCI/", "b8\\": "B8Framework/b8/" } }, - "autoload-dev": { "psr-4": { "Tests\\PHPCI\\": "Tests/PHPCI/", "Tests\\b8\\": "B8Framework/tests/" } }, - "require": { - "php": ">=5.3.8", - "ext-pdo": "*", - "ext-pdo_mysql": "*", - "ircmaxell/password-compat": "~1.0", - "swiftmailer/swiftmailer": "~5.0", - "symfony/yaml": "~2.1", - "symfony/console": "~2.1", - "psr/log": "~1.0", - "monolog/monolog": "~1.6", - "pimple/pimple": "~1.1", - "robmorgan/phinx": "~0.4", - "sensiolabs/ansi-to-html": "~1.1", - "pda/pheanstalk": "~3.1", - "maknz/slack": "~1.7", - "hipchat/hipchat-php": "~1.4", - "mremi/flowdock": "~1.0" + "php": ">=5.4.0", + "ext-pdo": "*", + "ext-pdo_mysql": "*", + "ircmaxell/password-compat": "1.0.*", + "swiftmailer/swiftmailer": "5.4.*", + "symfony/yaml": "2.8.*", + "symfony/console": "2.8.*", + "psr/log": "1.0.*", + "monolog/monolog": "1.17.*", + "pimple/pimple": "3.0.*", + "robmorgan/phinx": "0.5.*", + "sensiolabs/ansi-to-html": "1.1.*", + "pda/pheanstalk": "3.1.*" }, - "require-dev": { - "phpunit/phpunit": "~4.5", - "phpmd/phpmd": "~2.0", - "sebastian/phpcpd": "~2.0", - "squizlabs/php_codesniffer": "~2.3", - "block8/php-docblock-checker": "~1.0", - "phploc/phploc": "~2.0", - "jakub-onderka/php-parallel-lint": "0.8.*" + "phpunit/phpunit": "4.8.*", + "phpmd/phpmd": "2.4.*", + "sebastian/phpcpd": "2.0.*", + "squizlabs/php_codesniffer": "2.6.*", + "block8/php-docblock-checker": "1.0.*", + "phploc/phploc": "3.0.*", + "jakub-onderka/php-parallel-lint": "0.9.*" }, - "suggest": { - "block8/php-docblock-checker": "PHP Docblock Checker", - "phpmd/phpmd": "PHP Mess Detector", - "sebastian/phpcpd": "PHP Copy/Paste Detector", - "squizlabs/php_codesniffer": "PHP Code Sniffer", - "phpspec/phpspec": "PHP Spec", - "fabpot/php-cs-fixer": "PHP Coding Standards Fixer", - "phploc/phploc": "PHP Lines of Code", - "atoum/atoum": "Atoum", + "block8/php-docblock-checker": "PHP Docblock Checker", + "phpmd/phpmd": "PHP Mess Detector", + "sebastian/phpcpd": "PHP Copy/Paste Detector", + "squizlabs/php_codesniffer": "PHP Code Sniffer", + "phpspec/phpspec": "PHP Spec", + "fabpot/php-cs-fixer": "PHP Coding Standards Fixer", + "phploc/phploc": "PHP Lines of Code", + "atoum/atoum": "Atoum", "jakub-onderka/php-parallel-lint": "Parallel Linting Tool", - "behat/behat": "Behat BDD Testing", - "phptal/phptal": "PHPTAL templating engine" + "behat/behat": "Behat BDD Testing", + "phptal/phptal": "PHPTAL templating engine", + "maknz/slack": "Slack", + "hipchat/hipchat-php": "Hipchat", + "mremi/flowdock": "Flowdock" } } diff --git a/composer.lock b/composer.lock index 8ae4c75e..bfd54e19 100644 --- a/composer.lock +++ b/composer.lock @@ -4,317 +4,9 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "hash": "4ab58f85da00db2f80ee2f0f4588339c", - "content-hash": "13a76d8d0e7057023ac961bd9462122f", + "hash": "8284c7c2c1947ad6dab0eaa67bc2d268", + "content-hash": "aea45980fd51944fe67aeb4a0677ec88", "packages": [ - { - "name": "guzzle/guzzle", - "version": "v3.9.3", - "source": { - "type": "git", - "url": "https://github.com/guzzle/guzzle3.git", - "reference": "0645b70d953bc1c067bbc8d5bc53194706b628d9" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle3/zipball/0645b70d953bc1c067bbc8d5bc53194706b628d9", - "reference": "0645b70d953bc1c067bbc8d5bc53194706b628d9", - "shasum": "" - }, - "require": { - "ext-curl": "*", - "php": ">=5.3.3", - "symfony/event-dispatcher": "~2.1" - }, - "replace": { - "guzzle/batch": "self.version", - "guzzle/cache": "self.version", - "guzzle/common": "self.version", - "guzzle/http": "self.version", - "guzzle/inflection": "self.version", - "guzzle/iterator": "self.version", - "guzzle/log": "self.version", - "guzzle/parser": "self.version", - "guzzle/plugin": "self.version", - "guzzle/plugin-async": "self.version", - "guzzle/plugin-backoff": "self.version", - "guzzle/plugin-cache": "self.version", - "guzzle/plugin-cookie": "self.version", - "guzzle/plugin-curlauth": "self.version", - "guzzle/plugin-error-response": "self.version", - "guzzle/plugin-history": "self.version", - "guzzle/plugin-log": "self.version", - "guzzle/plugin-md5": "self.version", - "guzzle/plugin-mock": "self.version", - "guzzle/plugin-oauth": "self.version", - "guzzle/service": "self.version", - "guzzle/stream": "self.version" - }, - "require-dev": { - "doctrine/cache": "~1.3", - "monolog/monolog": "~1.0", - "phpunit/phpunit": "3.7.*", - "psr/log": "~1.0", - "symfony/class-loader": "~2.1", - "zendframework/zend-cache": "2.*,<2.3", - "zendframework/zend-log": "2.*,<2.3" - }, - "suggest": { - "guzzlehttp/guzzle": "Guzzle 5 has moved to a new package name. The package you have installed, Guzzle 3, is deprecated." - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.9-dev" - } - }, - "autoload": { - "psr-0": { - "Guzzle": "src/", - "Guzzle\\Tests": "tests/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - }, - { - "name": "Guzzle Community", - "homepage": "https://github.com/guzzle/guzzle/contributors" - } - ], - "description": "PHP HTTP client. This library is deprecated in favor of https://packagist.org/packages/guzzlehttp/guzzle", - "homepage": "http://guzzlephp.org/", - "keywords": [ - "client", - "curl", - "framework", - "http", - "http client", - "rest", - "web service" - ], - "time": "2015-03-18 18:23:50" - }, - { - "name": "guzzlehttp/guzzle", - "version": "6.2.0", - "source": { - "type": "git", - "url": "https://github.com/guzzle/guzzle.git", - "reference": "d094e337976dff9d8e2424e8485872194e768662" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d094e337976dff9d8e2424e8485872194e768662", - "reference": "d094e337976dff9d8e2424e8485872194e768662", - "shasum": "" - }, - "require": { - "guzzlehttp/promises": "~1.0", - "guzzlehttp/psr7": "~1.1", - "php": ">=5.5.0" - }, - "require-dev": { - "ext-curl": "*", - "phpunit/phpunit": "~4.0", - "psr/log": "~1.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "6.2-dev" - } - }, - "autoload": { - "files": [ - "src/functions_include.php" - ], - "psr-4": { - "GuzzleHttp\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - } - ], - "description": "Guzzle is a PHP HTTP client library", - "homepage": "http://guzzlephp.org/", - "keywords": [ - "client", - "curl", - "framework", - "http", - "http client", - "rest", - "web service" - ], - "time": "2016-03-21 20:02:09" - }, - { - "name": "guzzlehttp/promises", - "version": "1.1.0", - "source": { - "type": "git", - "url": "https://github.com/guzzle/promises.git", - "reference": "bb9024c526b22f3fe6ae55a561fd70653d470aa8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/bb9024c526b22f3fe6ae55a561fd70653d470aa8", - "reference": "bb9024c526b22f3fe6ae55a561fd70653d470aa8", - "shasum": "" - }, - "require": { - "php": ">=5.5.0" - }, - "require-dev": { - "phpunit/phpunit": "~4.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0-dev" - } - }, - "autoload": { - "psr-4": { - "GuzzleHttp\\Promise\\": "src/" - }, - "files": [ - "src/functions_include.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - } - ], - "description": "Guzzle promises library", - "keywords": [ - "promise" - ], - "time": "2016-03-08 01:15:46" - }, - { - "name": "guzzlehttp/psr7", - "version": "1.2.3", - "source": { - "type": "git", - "url": "https://github.com/guzzle/psr7.git", - "reference": "2e89629ff057ebb49492ba08e6995d3a6a80021b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/2e89629ff057ebb49492ba08e6995d3a6a80021b", - "reference": "2e89629ff057ebb49492ba08e6995d3a6a80021b", - "shasum": "" - }, - "require": { - "php": ">=5.4.0", - "psr/http-message": "~1.0" - }, - "provide": { - "psr/http-message-implementation": "1.0" - }, - "require-dev": { - "phpunit/phpunit": "~4.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0-dev" - } - }, - "autoload": { - "psr-4": { - "GuzzleHttp\\Psr7\\": "src/" - }, - "files": [ - "src/functions_include.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - } - ], - "description": "PSR-7 message implementation", - "keywords": [ - "http", - "message", - "stream", - "uri" - ], - "time": "2016-02-18 21:54:00" - }, - { - "name": "hipchat/hipchat-php", - "version": "v1.4", - "source": { - "type": "git", - "url": "https://github.com/hipchat/hipchat-php.git", - "reference": "5936c0a48d2d514d94bfc1d774b04c42cd3bc39e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/hipchat/hipchat-php/zipball/5936c0a48d2d514d94bfc1d774b04c42cd3bc39e", - "reference": "5936c0a48d2d514d94bfc1d774b04c42cd3bc39e", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "type": "library", - "autoload": { - "psr-0": { - "HipChat": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "HipChat", - "email": "support@hipchat.com", - "homepage": "https://www.hipchat.com", - "role": "Company" - } - ], - "description": "PHP library for HipChat", - "homepage": "http://github.com/hipchat/hipchat-php", - "keywords": [ - "hipchat" - ], - "time": "2015-04-28 22:48:40" - }, { "name": "ircmaxell/password-compat", "version": "v1.0.4", @@ -357,67 +49,18 @@ ], "time": "2014-11-20 16:49:30" }, - { - "name": "maknz/slack", - "version": "1.7.0", - "source": { - "type": "git", - "url": "https://github.com/maknz/slack.git", - "reference": "7f21fefc70c76b304adc1b3a780c8740dfcfb595" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/maknz/slack/zipball/7f21fefc70c76b304adc1b3a780c8740dfcfb595", - "reference": "7f21fefc70c76b304adc1b3a780c8740dfcfb595", - "shasum": "" - }, - "require": { - "ext-mbstring": "*", - "guzzlehttp/guzzle": "~6.0|~5.0|~4.0", - "php": ">=5.4.0" - }, - "require-dev": { - "mockery/mockery": "0.9.*", - "phpunit/phpunit": "4.2.*" - }, - "suggest": { - "illuminate/support": "Required for Laravel support" - }, - "type": "library", - "autoload": { - "psr-4": { - "Maknz\\Slack\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-2-Clause" - ], - "authors": [ - { - "name": "maknz", - "email": "github@mak.geek.nz" - } - ], - "description": "A simple PHP package for sending messages to Slack, with a focus on ease of use and elegant syntax. Includes Laravel support out of the box.", - "keywords": [ - "laravel", - "slack" - ], - "time": "2015-06-03 03:35:16" - }, { "name": "monolog/monolog", - "version": "1.18.2", + "version": "1.17.2", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "064b38c16790249488e7a8b987acf1c9d7383c09" + "reference": "bee7f0dc9c3e0b69a6039697533dca1e845c8c24" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/064b38c16790249488e7a8b987acf1c9d7383c09", - "reference": "064b38c16790249488e7a8b987acf1c9d7383c09", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bee7f0dc9c3e0b69a6039697533dca1e845c8c24", + "reference": "bee7f0dc9c3e0b69a6039697533dca1e845c8c24", "shasum": "" }, "require": { @@ -432,13 +75,13 @@ "doctrine/couchdb": "~1.0@dev", "graylog2/gelf-php": "~1.0", "jakub-onderka/php-parallel-lint": "0.9", - "php-amqplib/php-amqplib": "~2.4", "php-console/php-console": "^3.1.3", "phpunit/phpunit": "~4.5", "phpunit/phpunit-mock-objects": "2.3.0", "raven/raven": "^0.13", "ruflin/elastica": ">=0.90 <3.0", - "swiftmailer/swiftmailer": "~5.3" + "swiftmailer/swiftmailer": "~5.3", + "videlalvaro/php-amqplib": "~2.4" }, "suggest": { "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", @@ -446,17 +89,16 @@ "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", "ext-mongo": "Allow sending log messages to a MongoDB server", "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", - "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver", - "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", "php-console/php-console": "Allow sending log messages to Google Chrome", "raven/raven": "Allow sending log messages to a Sentry server", "rollbar/rollbar": "Allow sending log messages to Rollbar", - "ruflin/elastica": "Allow sending log messages to an Elastic Search server" + "ruflin/elastica": "Allow sending log messages to an Elastic Search server", + "videlalvaro/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0.x-dev" + "dev-master": "1.16.x-dev" } }, "autoload": { @@ -482,54 +124,7 @@ "logging", "psr-3" ], - "time": "2016-04-02 13:12:58" - }, - { - "name": "mremi/flowdock", - "version": "v1.0.0", - "source": { - "type": "git", - "url": "https://github.com/mremi/Flowdock.git", - "reference": "e34ca78bbd4f974366e979186e876d78ae488e51" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mremi/Flowdock/zipball/e34ca78bbd4f974366e979186e876d78ae488e51", - "reference": "e34ca78bbd4f974366e979186e876d78ae488e51", - "shasum": "" - }, - "require": { - "guzzle/guzzle": "~3.7", - "php": ">=5.3.3", - "symfony/console": "~2.5" - }, - "require-dev": { - "phpunit/phpunit": "~4.1" - }, - "type": "library", - "autoload": { - "psr-0": { - "Mremi\\Flowdock": "src", - "Mremi\\Flowdock\\Tests": "tests/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Rémi Marseille", - "email": "marseille.remi@gmail.com" - } - ], - "description": "A PHP5 library to interact with the Flowdock API", - "homepage": "https://github.com/mremi/Flowdock", - "keywords": [ - "api", - "flowdock" - ], - "time": "2015-01-08 21:03:29" + "time": "2015-10-14 12:51:02" }, { "name": "pda/pheanstalk", @@ -583,16 +178,16 @@ }, { "name": "pimple/pimple", - "version": "v1.1.1", + "version": "v3.0.2", "source": { "type": "git", "url": "https://github.com/silexphp/Pimple.git", - "reference": "2019c145fe393923f3441b23f29bbdfaa5c58c4d" + "reference": "a30f7d6e57565a2e1a316e1baf2a483f788b258a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/silexphp/Pimple/zipball/2019c145fe393923f3441b23f29bbdfaa5c58c4d", - "reference": "2019c145fe393923f3441b23f29bbdfaa5c58c4d", + "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a30f7d6e57565a2e1a316e1baf2a483f788b258a", + "reference": "a30f7d6e57565a2e1a316e1baf2a483f788b258a", "shasum": "" }, "require": { @@ -601,12 +196,12 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1.x-dev" + "dev-master": "3.0.x-dev" } }, "autoload": { "psr-0": { - "Pimple": "lib/" + "Pimple": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -619,62 +214,13 @@ "email": "fabien@symfony.com" } ], - "description": "Pimple is a simple Dependency Injection Container for PHP 5.3", + "description": "Pimple, a simple Dependency Injection Container", "homepage": "http://pimple.sensiolabs.org", "keywords": [ "container", "dependency injection" ], - "time": "2013-11-22 08:30:29" - }, - { - "name": "psr/http-message", - "version": "1.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/http-message.git", - "reference": "85d63699f0dbedb190bbd4b0d2b9dc707ea4c298" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message/zipball/85d63699f0dbedb190bbd4b0d2b9dc707ea4c298", - "reference": "85d63699f0dbedb190bbd4b0d2b9dc707ea4c298", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Http\\Message\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for HTTP messages", - "keywords": [ - "http", - "http-message", - "psr", - "psr-7", - "request", - "response" - ], - "time": "2015-05-04 20:22:00" + "time": "2015-09-11 15:10:35" }, { "name": "psr/log", @@ -985,66 +531,6 @@ "homepage": "https://symfony.com", "time": "2016-03-17 09:19:04" }, - { - "name": "symfony/event-dispatcher", - "version": "v2.8.4", - "source": { - "type": "git", - "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "47d2d8cade9b1c3987573d2943bb9352536cdb87" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/47d2d8cade9b1c3987573d2943bb9352536cdb87", - "reference": "47d2d8cade9b1c3987573d2943bb9352536cdb87", - "shasum": "" - }, - "require": { - "php": ">=5.3.9" - }, - "require-dev": { - "psr/log": "~1.0", - "symfony/config": "~2.0,>=2.0.5|~3.0.0", - "symfony/dependency-injection": "~2.6|~3.0.0", - "symfony/expression-language": "~2.6|~3.0.0", - "symfony/stopwatch": "~2.3|~3.0.0" - }, - "suggest": { - "symfony/dependency-injection": "", - "symfony/http-kernel": "" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.8-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\EventDispatcher\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony EventDispatcher Component", - "homepage": "https://symfony.com", - "time": "2016-03-07 14:04:32" - }, { "name": "symfony/filesystem", "version": "v3.0.4", @@ -1313,16 +799,16 @@ }, { "name": "jakub-onderka/php-parallel-lint", - "version": "v0.8", + "version": "v0.9.2", "source": { "type": "git", "url": "https://github.com/JakubOnderka/PHP-Parallel-Lint.git", - "reference": "2b242dcdbdd7369d2a746518ac31bb30c514b728" + "reference": "2ead2e4043ab125bee9554f356e0a86742c2d4fa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/JakubOnderka/PHP-Parallel-Lint/zipball/2b242dcdbdd7369d2a746518ac31bb30c514b728", - "reference": "2b242dcdbdd7369d2a746518ac31bb30c514b728", + "url": "https://api.github.com/repos/JakubOnderka/PHP-Parallel-Lint/zipball/2ead2e4043ab125bee9554f356e0a86742c2d4fa", + "reference": "2ead2e4043ab125bee9554f356e0a86742c2d4fa", "shasum": "" }, "require": { @@ -1346,7 +832,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD" + "BSD-2-Clause" ], "authors": [ { @@ -1356,7 +842,7 @@ ], "description": "This tool check syntax of PHP files about 20x faster than serial check.", "homepage": "https://github.com/JakubOnderka/PHP-Parallel-Lint", - "time": "2014-10-05 10:19:39" + "time": "2015-12-15 10:42:16" }, { "name": "pdepend/pdepend", @@ -1449,27 +935,27 @@ }, { "name": "phploc/phploc", - "version": "2.1.5", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phploc.git", - "reference": "50e063abd41833b3a5d29a2e8fbef5859ac28bdc" + "reference": "2917d010fbfd503d9e836cefff249cb3c1b3f17a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phploc/zipball/50e063abd41833b3a5d29a2e8fbef5859ac28bdc", - "reference": "50e063abd41833b3a5d29a2e8fbef5859ac28bdc", + "url": "https://api.github.com/repos/sebastianbergmann/phploc/zipball/2917d010fbfd503d9e836cefff249cb3c1b3f17a", + "reference": "2917d010fbfd503d9e836cefff249cb3c1b3f17a", "shasum": "" }, "require": { - "php": ">=5.3.3", + "php": ">=5.6", "sebastian/finder-facade": "~1.1", "sebastian/git": "~2.0", "sebastian/version": "~1.0.3", - "symfony/console": "~2.5" + "symfony/console": "~2.5|~3.0" }, "require-dev": { - "phpunit/phpunit": "~4" + "phpunit/phpunit": "~5" }, "bin": [ "phploc" @@ -1477,7 +963,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-master": "3.0-dev" } }, "autoload": { @@ -1498,7 +984,7 @@ ], "description": "A tool for quickly measuring the size of a PHP project.", "homepage": "https://github.com/sebastianbergmann/phploc", - "time": "2015-10-22 13:44:19" + "time": "2016-01-13 10:20:53" }, { "name": "phpmd/phpmd", @@ -2734,7 +2220,7 @@ "prefer-stable": false, "prefer-lowest": false, "platform": { - "php": ">=5.3.8", + "php": ">=5.4.0", "ext-pdo": "*", "ext-pdo_mysql": "*" },