upgrade dependencies (php7)

This commit is contained in:
Simon Vieille 2020-01-20 11:04:04 +01:00
부모 af0c45c6bc
커밋 cd43e2fed9
로그인 계정: deblan
GPG 키 ID: 03383D15A1D31745
6개의 변경된 파일14개의 추가작업 그리고 7개의 파일을 삭제

4
Makefile Normal file
파일 보기

@ -0,0 +1,4 @@
.PHONY: tests
tests:
phpunit

파일 보기

@ -15,8 +15,8 @@
},
"minimum-stability": "dev",
"require": {
"php": ">=5.6.0",
"symfony/validator": "3.*",
"php": "^7.1.3",
"symfony/validator": "^4",
"deblan/csv": "v2.0.*"
}
}

파일 보기

@ -7,7 +7,6 @@
convertWarningsToExceptions = "true"
processIsolation = "false"
stopOnFailure = "false"
syntaxCheck = "true"
bootstrap = "vendor/autoload.php" >
<testsuites>

파일 보기

@ -1,11 +1,13 @@
<?php
use PHPUnit\Framework\TestCase;
/**
* class ExampleTest.
*
* @author Simon Vieille <simon@deblan.fr>
*/
class ExampleTest extends \PHPUnit_Framework_TestCase
class ExampleTest extends TestCase
{
public function testExemple()
{

파일 보기

@ -1,18 +1,19 @@
<?php
use PHPUnit\Framework\TestCase;
use Deblan\Csv\CsvParser;
use Deblan\CsvValidator\Validator;
use Symfony\Component\Validator\Validation;
use Symfony\Component\Validator\Constraints\NotBlank;
use Symfony\Component\Validator\Constraints\Email;
class ValidatorTest extends \PHPUnit_Framework_TestCase
class ValidatorTest extends TestCase
{
public function testViolation()
{
$parser = $this->generateParser('example.csv');
$validator = $this->generateValidator($parser);
$this->setExpectedException('\RuntimeException');
$this->expectException('\RuntimeException');
$validator->isValid();
}

파일 보기

@ -1,9 +1,10 @@
<?php
use PHPUnit\Framework\TestCase;
use Symfony\Component\Validator\ConstraintViolation;
use Deblan\CsvValidator\Violation;
class ViolationTest extends \PHPUnit_Framework_TestCase
class ViolationTest extends TestCase
{
public function testViolation()
{