Updated composer and solved namespace bug

This commit is contained in:
Kevin Frantz 2018-09-05 17:27:58 +02:00
parent e30fd95ff6
commit d61545a62e
2 changed files with 22 additions and 21 deletions

View File

@ -1460,33 +1460,34 @@
}, },
{ {
"name": "ocramius/proxy-manager", "name": "ocramius/proxy-manager",
"version": "2.1.1", "version": "2.2.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/Ocramius/ProxyManager.git", "url": "https://github.com/Ocramius/ProxyManager.git",
"reference": "e18ac876b2e4819c76349de8f78ccc8ef1554cd7" "reference": "306da837ddf12aa5a85a8ca343587ec822802ac3"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/e18ac876b2e4819c76349de8f78ccc8ef1554cd7", "url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/306da837ddf12aa5a85a8ca343587ec822802ac3",
"reference": "e18ac876b2e4819c76349de8f78ccc8ef1554cd7", "reference": "306da837ddf12aa5a85a8ca343587ec822802ac3",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"ocramius/package-versions": "^1.1.1", "ocramius/package-versions": "^1.1.3",
"php": "^7.1.0", "php": "^7.2.0",
"zendframework/zend-code": "^3.1.0" "zendframework/zend-code": "^3.3.0"
}, },
"require-dev": { "require-dev": {
"couscous/couscous": "^1.5.2", "couscous/couscous": "^1.6.1",
"ext-phar": "*", "ext-phar": "*",
"humbug/humbug": "dev-master@DEV", "humbug/humbug": "1.0.0-RC.0@RC",
"nikic/php-parser": "^3.0.4", "nikic/php-parser": "^3.1.1",
"padraic/phpunit-accelerator": "dev-master@DEV",
"phpbench/phpbench": "^0.12.2", "phpbench/phpbench": "^0.12.2",
"phpstan/phpstan": "^0.6.4", "phpstan/phpstan": "dev-master#856eb10a81c1d27c701a83f167dc870fd8f4236a as 0.9.999",
"phpunit/phpunit": "^5.6.4", "phpstan/phpstan-phpunit": "dev-master#5629c0a1f4a9c417cb1077cf6693ad9753895761",
"phpunit/phpunit-mock-objects": "^3.4.1", "phpunit/phpunit": "^6.4.3",
"squizlabs/php_codesniffer": "^2.7.0" "squizlabs/php_codesniffer": "^2.9.1"
}, },
"suggest": { "suggest": {
"ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects", "ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects",
@ -1525,7 +1526,7 @@
"proxy pattern", "proxy pattern",
"service proxies" "service proxies"
], ],
"time": "2017-05-04T11:12:50+00:00" "time": "2018-08-26T15:07:25+00:00"
}, },
{ {
"name": "phpdocumentor/reflection-common", "name": "phpdocumentor/reflection-common",
@ -5408,16 +5409,16 @@
}, },
{ {
"name": "phpunit/phpunit", "name": "phpunit/phpunit",
"version": "7.3.3", "version": "7.3.4",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git", "url": "https://github.com/sebastianbergmann/phpunit.git",
"reference": "1bd5629cccfb2c0a9ef5474b4ff772349e1ec898" "reference": "0356331bf62896dc56e3a15030b23b73f38b2935"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/1bd5629cccfb2c0a9ef5474b4ff772349e1ec898", "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0356331bf62896dc56e3a15030b23b73f38b2935",
"reference": "1bd5629cccfb2c0a9ef5474b4ff772349e1ec898", "reference": "0356331bf62896dc56e3a15030b23b73f38b2935",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -5488,7 +5489,7 @@
"testing", "testing",
"xunit" "xunit"
], ],
"time": "2018-09-01T15:49:55+00:00" "time": "2018-09-05T09:58:53+00:00"
}, },
{ {
"name": "sebastian/code-unit-reverse-lookup", "name": "sebastian/code-unit-reverse-lookup",

View File

@ -1,5 +1,5 @@
<?php <?php
namespace Controller; namespace App\Controller;
use PHPUnit\Framework\TestCase; use PHPUnit\Framework\TestCase;
use App\Controller\UserController; use App\Controller\UserController;