fix tests

This commit is contained in:
Nicolas Grekas 2019-05-28 09:50:59 +02:00
parent 4bd85343e6
commit cfeb5bee07
10 changed files with 11 additions and 5 deletions

View File

@ -31,7 +31,7 @@
"symfony/polyfill-intl-icu": "~1.0",
"symfony/routing": "~3.4|~4.0",
"symfony/templating": "~3.4|~4.0",
"symfony/translation": "~4.2",
"symfony/translation": "^4.2.1",
"symfony/yaml": "~3.4|~4.0",
"symfony/security-acl": "~2.8|~3.0",
"symfony/security-csrf": "~3.4|~4.0",

View File

@ -14,7 +14,7 @@ namespace Symfony\Component\DependencyInjection\Tests;
use Symfony\Component\DependencyInjection\Container;
use Symfony\Component\DependencyInjection\ServiceLocator;
use Symfony\Contracts\Service\ServiceSubscriberInterface;
use Symfony\Contracts\Tests\Service\ServiceLocatorTest as BaseServiceLocatorTest;
use Symfony\Contracts\Service\Test\ServiceLocatorTest as BaseServiceLocatorTest;
class ServiceLocatorTest extends BaseServiceLocatorTest
{

View File

@ -18,7 +18,7 @@
"require": {
"php": "^7.1.3",
"psr/container": "^1.0",
"symfony/service-contracts": "^1.1"
"symfony/service-contracts": "^1.1.2"
},
"require-dev": {
"symfony/yaml": "~3.4|~4.0",

View File

@ -24,6 +24,7 @@
"symfony/expression-language": "~3.4|~4.0",
"symfony/config": "~3.4|~4.0",
"symfony/http-foundation": "^3.4|^4.0",
"symfony/service-contracts": "^1.1",
"symfony/stopwatch": "~3.4|~4.0",
"psr/log": "~1.0"
},

View File

@ -38,6 +38,7 @@
"symfony/stopwatch": "~3.4|~4.0",
"symfony/templating": "~3.4|~4.0",
"symfony/translation": "~4.2",
"symfony/translation-contracts": "^1.1",
"symfony/var-dumper": "^4.1.1",
"psr/cache": "~1.0",
"twig/twig": "^1.34|^2.4"

View File

@ -25,6 +25,7 @@
"require-dev": {
"symfony/amazon-mailer": "^4.3",
"symfony/google-mailer": "^4.3",
"symfony/http-client-contracts": "^1.1",
"symfony/mailgun-mailer": "^4.3",
"symfony/mailchimp-mailer": "^4.3",
"symfony/postmark-mailer": "^4.3",

View File

@ -31,6 +31,7 @@
"symfony/process": "~3.4|~4.0",
"symfony/property-access": "~3.4|~4.0",
"symfony/serializer": "~3.4|~4.0",
"symfony/service-contracts": "^1.1",
"symfony/stopwatch": "~3.4|~4.0",
"symfony/validator": "~3.4|~4.0",
"symfony/var-dumper": "~3.4|~4.0"

View File

@ -18,7 +18,7 @@
"require": {
"php": "^7.1.3",
"symfony/polyfill-mbstring": "~1.0",
"symfony/translation-contracts": "^1.1"
"symfony/translation-contracts": "^1.1.2"
},
"require-dev": {
"symfony/config": "~3.4|~4.0",

View File

@ -9,7 +9,7 @@
* file that was distributed with this source code.
*/
namespace Symfony\Contracts\Tests\Service;
namespace Symfony\Contracts\Service\Test;
use PHPUnit\Framework\TestCase;
use Psr\Container\ContainerInterface;

View File

@ -15,6 +15,7 @@
<testsuites>
<testsuite name="Symfony Contracts Test Suite">
<directory>./Tests/</directory>
<directory>./Service/Test/</directory>
<directory>./Translation/Test/</directory>
</testsuite>
</testsuites>
@ -24,6 +25,7 @@
<directory>./</directory>
<exclude>
<directory>./Tests</directory>
<directory>./Service/Test/</directory>
<directory>./Translation/Test/</directory>
<directory>./vendor</directory>
</exclude>