Compare commits
2 Commits
0212b3e405
...
e474123699
Author | SHA1 | Date | |
---|---|---|---|
e474123699 | |||
c3a99d5939 |
@ -3,6 +3,7 @@ watch:
|
|||||||
- src
|
- src
|
||||||
- tests
|
- tests
|
||||||
- common
|
- common
|
||||||
|
- resources
|
||||||
fileMask: '*.php'
|
fileMask: '*.php'
|
||||||
notifications:
|
notifications:
|
||||||
passingTests: false
|
passingTests: false
|
||||||
|
@ -3,24 +3,26 @@
|
|||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"type": "project",
|
"type": "project",
|
||||||
"require": {
|
"require": {
|
||||||
"berrnd/slim-blade-view": "^1.0",
|
|
||||||
"ext-gd": "*",
|
"ext-gd": "*",
|
||||||
"ext-openssl": "*",
|
"ext-openssl": "*",
|
||||||
"ext-pdo": "*",
|
"ext-pdo": "*",
|
||||||
|
"berrnd/slim-blade-view": "^1.0",
|
||||||
"guzzlehttp/guzzle": "^7.8",
|
"guzzlehttp/guzzle": "^7.8",
|
||||||
"monolog/monolog": "^3.4",
|
"monolog/monolog": "^3.4",
|
||||||
"nyholm/psr7": "^1.8",
|
"nyholm/psr7": "^1.8",
|
||||||
"nyholm/psr7-server": "^1.0",
|
"nyholm/psr7-server": "^1.0",
|
||||||
"php-di/php-di": "^7.0",
|
"php-di/php-di": "^7.0",
|
||||||
"php-di/slim-bridge": "^3.4",
|
"php-di/slim-bridge": "^3.4",
|
||||||
"phpoffice/phpspreadsheet": "^1.29",
|
"phpoffice/phpspreadsheet": "^3.0",
|
||||||
"predis/predis": "^2.2",
|
"predis/predis": "^2.2",
|
||||||
|
"robmorgan/phinx": "^0.16.5",
|
||||||
"slim/slim": "^4.11"
|
"slim/slim": "^4.11"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"fakerphp/faker": "^1.23",
|
"fakerphp/faker": "^1.23",
|
||||||
"kint-php/kint": "^5.1",
|
"kint-php/kint": "^5.1",
|
||||||
"phpunit/phpunit": "^10.2",
|
"odan/phinx-migrations-generator": "^6.2",
|
||||||
|
"phpunit/phpunit": "^11",
|
||||||
"spatie/phpunit-watcher": "^1.23"
|
"spatie/phpunit-watcher": "^1.23"
|
||||||
},
|
},
|
||||||
"authors": [
|
"authors": [
|
||||||
|
@ -1,43 +1,43 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
<phpunit
|
||||||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
bootstrap="vendor/autoload.php"
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.4/phpunit.xsd"
|
||||||
cacheDirectory="/code/cache/tests"
|
bootstrap="test.bootstrap.php"
|
||||||
executionOrder="depends,defects"
|
cacheDirectory="/code/cache/tests"
|
||||||
requireCoverageMetadata="false"
|
executionOrder="depends,defects"
|
||||||
beStrictAboutCoverageMetadata="false"
|
requireCoverageMetadata="false"
|
||||||
beStrictAboutOutputDuringTests="true"
|
beStrictAboutCoverageMetadata="false"
|
||||||
colors="true"
|
beStrictAboutOutputDuringTests="true"
|
||||||
failOnRisky="false"
|
colors="true"
|
||||||
failOnWarning="false">
|
failOnRisky="false"
|
||||||
<testsuites>
|
failOnWarning="false">
|
||||||
<testsuite name="unit">
|
<testsuites>
|
||||||
<directory>tests/units</directory>
|
<testsuite name="unit">
|
||||||
</testsuite>
|
<directory>tests/unit</directory>
|
||||||
<testsuite name="acceptance">
|
</testsuite>
|
||||||
<directory>tests/integration</directory>
|
<testsuite name="acceptance">
|
||||||
</testsuite>
|
<directory>tests/integration</directory>
|
||||||
<testsuite name="performance">
|
</testsuite>
|
||||||
<directory>tests/performance</directory>
|
<testsuite name="performance">
|
||||||
</testsuite>
|
<directory>tests/performance</directory>
|
||||||
</testsuites>
|
</testsuite>
|
||||||
|
</testsuites>
|
||||||
<source restrictDeprecations="true" restrictNotices="true" restrictWarnings="true">
|
<source restrictNotices="true" restrictWarnings="true" ignoreIndirectDeprecations="true">
|
||||||
<include>
|
<include>
|
||||||
<directory>src</directory>
|
<directory>src</directory>
|
||||||
<directory>common</directory>
|
<directory>common</directory>
|
||||||
</include>
|
</include>
|
||||||
</source>
|
</source>
|
||||||
<coverage includeUncoveredFiles="true" pathCoverage="false" ignoreDeprecatedCodeUnits="true" disableCodeCoverageIgnore="true">
|
<coverage pathCoverage="false" ignoreDeprecatedCodeUnits="true" disableCodeCoverageIgnore="true">
|
||||||
<report>
|
<report>
|
||||||
<html outputDirectory="/code/public/coverage/html" />
|
<html outputDirectory="/code/public/coverage/html"/>
|
||||||
<php outputFile="/code/public/coverage/coverage.php" />
|
<php outputFile="/code/public/coverage/coverage.php"/>
|
||||||
</report>
|
</report>
|
||||||
</coverage>
|
</coverage>
|
||||||
<logging>
|
<logging>
|
||||||
<junit outputFile="/code/cache/tests/junit.xml" />
|
<junit outputFile="/code/cache/tests/junit.xml"/>
|
||||||
<teamcity outputFile="/code/cache/tests/teamcity.txt" />
|
<teamcity outputFile="/code/cache/tests/teamcity.txt"/>
|
||||||
<testdoxHtml outputFile="/code/cache/tests/testdox.html" />
|
<testdoxHtml outputFile="/code/cache/tests/testdox.html"/>
|
||||||
<testdoxText outputFile="/code/cache/tests/testdox.txt" />
|
<testdoxText outputFile="/code/cache/tests/testdox.txt"/>
|
||||||
</logging>
|
</logging>
|
||||||
</phpunit>
|
</phpunit>
|
||||||
|
Reference in New Issue
Block a user