mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-08 17:12:25 +03:00
Updated phpunit dev dependency to v7
This commit is contained in:
parent
333838b635
commit
9e9565400d
3 changed files with 930 additions and 817 deletions
|
@ -22,16 +22,19 @@
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/alextselegidis/easyappointments/issues",
|
"issues": "https://github.com/alextselegidis/easyappointments/issues",
|
||||||
"forum": "https://groups.google.com/forum/#!forum/easy-appointments",
|
"forum": "https://groups.google.com/forum/#!forum/easy-appointments",
|
||||||
"wiki": "http://easyappointments.org/docs.html#1.2.1/readme.md",
|
"wiki": "http://easyappointments.org/docs",
|
||||||
"source": "https://github.com/alextselegidis/easyappointments"
|
"source": "https://github.com/alextselegidis/easyappointments"
|
||||||
},
|
},
|
||||||
"minimum-stability": "stable",
|
"minimum-stability": "stable",
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"phpunit/phpunit": "^5.6"
|
"roave/security-advisories": "dev-master",
|
||||||
|
"phpunit/phpunit": "^7.4"
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=5.6",
|
"php": ">=5.6",
|
||||||
"roave/security-advisories": "dev-master",
|
"ext-curl": "*",
|
||||||
|
"ext-json": "*",
|
||||||
|
"ext-mbstring": "*",
|
||||||
"gregwar/captcha": "^1.1",
|
"gregwar/captcha": "^1.1",
|
||||||
"phpmailer/phpmailer": "^5.2",
|
"phpmailer/phpmailer": "^5.2",
|
||||||
"codeigniter/framework": "^3.1.6",
|
"codeigniter/framework": "^3.1.6",
|
||||||
|
|
1730
composer.lock
generated
1730
composer.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -1,24 +1,24 @@
|
||||||
<phpunit
|
<phpunit
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/|version|/phpunit.xsd"
|
||||||
backupGlobals="true"
|
backupGlobals="true"
|
||||||
backupStaticAttributes="false"
|
backupStaticAttributes="false"
|
||||||
bootstrap="tests/phpunit/bootstrap.php"
|
bootstrap="tests/phpunit/bootstrap.php"
|
||||||
|
cacheResult="false"
|
||||||
cacheTokens="false"
|
cacheTokens="false"
|
||||||
colors="false"
|
colors="false"
|
||||||
convertErrorsToExceptions="true"
|
convertErrorsToExceptions="true"
|
||||||
convertNoticesToExceptions="true"
|
convertNoticesToExceptions="true"
|
||||||
convertWarningsToExceptions="true"
|
convertWarningsToExceptions="true"
|
||||||
forceCoversAnnotation="false"
|
forceCoversAnnotation="false"
|
||||||
mapTestClassNameToCoveredClassName="false"
|
printerClass="PHPUnit\TextUI\ResultPrinter"
|
||||||
printerClass="PHPUnit_TextUI_ResultPrinter"
|
|
||||||
processIsolation="false"
|
processIsolation="false"
|
||||||
stopOnError="false"
|
stopOnError="false"
|
||||||
stopOnFailure="false"
|
stopOnFailure="false"
|
||||||
stopOnIncomplete="false"
|
stopOnIncomplete="false"
|
||||||
stopOnSkipped="false"
|
stopOnSkipped="false"
|
||||||
stopOnRisky="false"
|
stopOnRisky="false"
|
||||||
testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader"
|
testSuiteLoaderClass="PHPUnit\Runner\StandardTestSuiteLoader"
|
||||||
timeoutForSmallTests="1"
|
timeoutForSmallTests="1"
|
||||||
timeoutForMediumTests="10"
|
timeoutForMediumTests="10"
|
||||||
timeoutForLargeTests="60"
|
timeoutForLargeTests="60"
|
||||||
|
|
Loading…
Reference in a new issue