File tree Expand file tree Collapse file tree 4 files changed +18
-12
lines changed Expand file tree Collapse file tree 4 files changed +18
-12
lines changed Original file line number Diff line number Diff line change 2
2
composer.lock
3
3
vendor
4
4
! .gitkeep
5
- tests /output
5
+ tests /output
6
+ .phpunit.cache
Original file line number Diff line number Diff line change 2
2
3
3
PHP wrapper for the qpdf library.
4
4
5
+ Currently requires PHP 7.4+ and the ` qpfd ` library installed (` sudo apt install qpdf ` ).
6
+
5
7
Basic Examples:
6
8
7
9
### Merge
Original file line number Diff line number Diff line change 10
10
}
11
11
],
12
12
"require" : {
13
- "php" : " >=7.2 " ,
13
+ "php" : " >=7.4 " ,
14
14
"mikehaertl/php-shellcommand" : " ^1.5.0"
15
15
},
16
16
"require-dev" : {
17
- "phpunit/phpunit" : " ~8.0||~9.0"
17
+ "phpunit/phpunit" : " ~8.0||~9.0||~10.0 "
18
18
},
19
19
"autoload" : {
20
20
"psr-4" : {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <phpunit backupGlobals =" false"
3
- backupStaticAttributes =" false"
2
+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.5/phpunit.xsd"
4
+ backupGlobals =" false"
4
5
bootstrap =" vendor/autoload.php"
5
6
cacheResult =" false"
6
- colors =" true" >
7
- <testsuites >
8
- <testsuite name =" DirectUpload Test Suite" >
9
- <directory suffix =" .php" >./tests/</directory >
10
- </testsuite >
11
- </testsuites >
12
- </phpunit >
7
+ colors =" true"
8
+ cacheDirectory =" .phpunit.cache"
9
+ backupStaticProperties =" false" >
10
+ <testsuites >
11
+ <testsuite name =" QPDF Test Suite" >
12
+ <directory suffix =" .php" >./tests/</directory >
13
+ </testsuite >
14
+ </testsuites >
15
+ </phpunit >
You can’t perform that action at this time.
0 commit comments