Skip to content

Commit 0192316

Browse files
authored
Merge pull request #64 from pts-contrib/issue-63
Incompatible PHP requirement
2 parents 812ccd8 + 1f52baa commit 0192316

File tree

3 files changed

+31
-29
lines changed

3 files changed

+31
-29
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "tobyz/json-api-server",
33
"description": "A fully automated JSON:API server implementation in PHP.",
44
"require": {
5-
"php": ">=7.1",
5+
"php": ">=7.3",
66
"ext-json": "*",
77
"doctrine/inflector": "^1.4 || ^2.0",
88
"json-api-php/json-api": "^2.2",

phpunit.xml

Lines changed: 0 additions & 28 deletions
This file was deleted.

phpunit.xml.dist

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
4+
cacheResultFile=".phpunit.result.cache"
5+
backupGlobals="false"
6+
backupStaticAttributes="false"
7+
beStrictAboutTestsThatDoNotTestAnything="true"
8+
beStrictAboutOutputDuringTests="true"
9+
bootstrap="vendor/autoload.php"
10+
colors="true"
11+
convertErrorsToExceptions="true"
12+
convertNoticesToExceptions="true"
13+
convertWarningsToExceptions="true"
14+
failOnRisky="true"
15+
failOnWarning="true"
16+
processIsolation="false"
17+
stopOnError="false"
18+
stopOnFailure="false"
19+
verbose="true">
20+
<coverage processUncoveredFiles="true">
21+
<include>
22+
<directory suffix=".php">./src</directory>
23+
</include>
24+
</coverage>
25+
<testsuites>
26+
<testsuite name="JSON:API Server Test Suite">
27+
<directory suffix="Test.php">./tests</directory>
28+
</testsuite>
29+
</testsuites>
30+
</phpunit>

0 commit comments

Comments
 (0)