forked from andreskrey/readability.php
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies, minimum PHP version 8.1
- Loading branch information
1 parent
62b04e8
commit e96b15d
Showing
8 changed files
with
50 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,52 @@ | ||
version: '3' | ||
|
||
services: | ||
php-7.4-libxml-2.9.10: &template | ||
php-8.1-libxml-2.9.13: &template | ||
build: | ||
context: ./docker/php | ||
args: | ||
LIBXML_VERSION: 2.9.10 | ||
PHP_VERSION: 7.4 | ||
LIBXML_VERSION: 2.9.13 | ||
PHP_VERSION: 8.1 | ||
volumes: | ||
- ./:/app | ||
tty: true | ||
|
||
php-7.4-libxml-2.9.13: | ||
<<: *template | ||
build: | ||
context: ./docker/php | ||
args: | ||
LIBXML_VERSION: 2.9.13 | ||
PHP_VERSION: 7.4 | ||
|
||
php-7.4-libxml-2.9.14: | ||
php-8.1-libxml-2.9.14: | ||
<<: *template | ||
build: | ||
context: ./docker/php | ||
args: | ||
LIBXML_VERSION: 2.9.14 | ||
PHP_VERSION: 7.4 | ||
|
||
php-8.0-libxml-2.9.10: | ||
<<: *template | ||
build: | ||
context: ./docker/php | ||
args: | ||
LIBXML_VERSION: 2.9.10 | ||
PHP_VERSION: 8.0 | ||
PHP_VERSION: 8.1 | ||
|
||
php-8.0-libxml-2.9.13: | ||
php-8.2-libxml-2.9.13: | ||
<<: *template | ||
build: | ||
context: ./docker/php | ||
args: | ||
LIBXML_VERSION: 2.9.13 | ||
PHP_VERSION: 8.0 | ||
PHP_VERSION: 8.2 | ||
|
||
php-8.0-libxml-2.9.14: | ||
php-8.2-libxml-2.9.14: | ||
<<: *template | ||
build: | ||
context: ./docker/php | ||
args: | ||
LIBXML_VERSION: 2.9.14 | ||
PHP_VERSION: 8.0 | ||
PHP_VERSION: 8.2 | ||
|
||
php-8.1-libxml-2.9.10: | ||
<<: *template | ||
build: | ||
context: ./docker/php | ||
args: | ||
LIBXML_VERSION: 2.9.10 | ||
PHP_VERSION: 8.1 | ||
|
||
php-8.1-libxml-2.9.13: | ||
php-8.3-libxml-2.9.13: | ||
<<: *template | ||
build: | ||
context: ./docker/php | ||
args: | ||
LIBXML_VERSION: 2.9.13 | ||
PHP_VERSION: 8.1 | ||
PHP_VERSION: 8.3 | ||
|
||
php-8.1-libxml-2.9.14: | ||
php-8.3-libxml-2.9.14: | ||
<<: *template | ||
build: | ||
context: ./docker/php | ||
args: | ||
LIBXML_VERSION: 2.9.14 | ||
PHP_VERSION: 8.1 | ||
PHP_VERSION: 8.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" colors="true" stopOnFailure="false" stopOnError="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> | ||
<coverage> | ||
<include> | ||
<directory suffix=".php">src/</directory> | ||
</include> | ||
</coverage> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" colors="true" stopOnFailure="false" stopOnError="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"> | ||
<testsuites> | ||
<testsuite name="Readability.php Test Suite"> | ||
<directory>./test/</directory> | ||
</testsuite> | ||
</testsuites> | ||
<source> | ||
<include> | ||
<directory suffix=".php">src/</directory> | ||
</include> | ||
</source> | ||
</phpunit> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters