File tree Expand file tree Collapse file tree 3 files changed +31
-29
lines changed Expand file tree Collapse file tree 3 files changed +31
-29
lines changed Original file line number Diff line number Diff line change 2
2
"name" : " tobyz/json-api-server" ,
3
3
"description" : " A fully automated JSON:API server implementation in PHP." ,
4
4
"require" : {
5
- "php" : " >=7.1 " ,
5
+ "php" : " >=7.3 " ,
6
6
"ext-json" : " *" ,
7
7
"doctrine/inflector" : " ^1.4 || ^2.0" ,
8
8
"json-api-php/json-api" : " ^2.2" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
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 >
You can’t perform that action at this time.
0 commit comments