-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
64 changed files
with
629 additions
and
615 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
/build/ | ||
/vendor/ | ||
/composer.lock | ||
/tools/ | ||
/vendor-bin/**/vendor/ | ||
/vendor-bin/**/composer.lock | ||
.phpunit.result.cache |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phive xmlns="https://phar.io/phive"> | ||
<phar name="infection" version="^0.27.9" installed="0.27.9" location="./tools/infection" copy="true"/> | ||
</phive> |
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
FROM php:8.1-cli | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
zip \ | ||
git \ | ||
wget \ | ||
gpg \ | ||
libicu-dev && \ | ||
pecl install xdebug && \ | ||
docker-php-ext-enable xdebug && \ | ||
docker-php-ext-configure intl --enable-intl && \ | ||
docker-php-ext-install intl pcntl && \ | ||
echo "xdebug.mode = develop,coverage,debug" >> "$PHP_INI_DIR/conf.d/docker-php-ext-xdebug.ini" | ||
|
||
ENV COMPOSER_ALLOW_SUPERUSER=1 \ | ||
COMPOSER_PROCESS_TIMEOUT=1200 | ||
|
||
RUN curl --silent --show-error https://getcomposer.org/installer | php -- \ | ||
--install-dir=/usr/bin --filename=composer && \ | ||
git config --global --add safe.directory "*" | ||
|
||
RUN wget -O phive.phar https://phar.io/releases/phive.phar && \ | ||
wget -O phive.phar.asc https://phar.io/releases/phive.phar.asc && \ | ||
gpg --keyserver hkps://keys.openpgp.org --recv-keys 0x9D8A98B29B2D5D79 && \ | ||
gpg --verify phive.phar.asc phive.phar && \ | ||
chmod +x phive.phar && \ | ||
mv phive.phar /usr/local/bin/phive \ |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
FROM php:8.2-cli | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
zip \ | ||
git \ | ||
wget \ | ||
gpg \ | ||
libicu-dev && \ | ||
pecl install xdebug && \ | ||
docker-php-ext-enable xdebug && \ | ||
docker-php-ext-configure intl --enable-intl && \ | ||
docker-php-ext-install intl pcntl && \ | ||
echo "xdebug.mode = develop,coverage,debug" >> "$PHP_INI_DIR/conf.d/docker-php-ext-xdebug.ini" | ||
|
||
ENV COMPOSER_ALLOW_SUPERUSER=1 \ | ||
COMPOSER_PROCESS_TIMEOUT=1200 | ||
|
||
RUN curl --silent --show-error https://getcomposer.org/installer | php -- \ | ||
--install-dir=/usr/bin --filename=composer && \ | ||
git config --global --add safe.directory "*" | ||
|
||
RUN wget -O phive.phar https://phar.io/releases/phive.phar && \ | ||
wget -O phive.phar.asc https://phar.io/releases/phive.phar.asc && \ | ||
gpg --keyserver hkps://keys.openpgp.org --recv-keys 0x9D8A98B29B2D5D79 && \ | ||
gpg --verify phive.phar.asc phive.phar && \ | ||
chmod +x phive.phar && \ | ||
mv phive.phar /usr/local/bin/phive \ |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
FROM php:8.3-cli | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
zip \ | ||
git \ | ||
wget \ | ||
gpg \ | ||
libicu-dev && \ | ||
pecl install xdebug && \ | ||
docker-php-ext-enable xdebug && \ | ||
docker-php-ext-configure intl --enable-intl && \ | ||
docker-php-ext-install intl pcntl && \ | ||
echo "xdebug.mode = develop,coverage,debug" >> "$PHP_INI_DIR/conf.d/docker-php-ext-xdebug.ini" | ||
|
||
ENV COMPOSER_ALLOW_SUPERUSER=1 \ | ||
COMPOSER_PROCESS_TIMEOUT=1200 | ||
|
||
RUN curl --silent --show-error https://getcomposer.org/installer | php -- \ | ||
--install-dir=/usr/bin --filename=composer && \ | ||
git config --global --add safe.directory "*" | ||
|
||
RUN wget -O phive.phar https://phar.io/releases/phive.phar && \ | ||
wget -O phive.phar.asc https://phar.io/releases/phive.phar.asc && \ | ||
gpg --keyserver hkps://keys.openpgp.org --recv-keys 0x9D8A98B29B2D5D79 && \ | ||
gpg --verify phive.phar.asc phive.phar && \ | ||
chmod +x phive.phar && \ | ||
mv phive.phar /usr/local/bin/phive \ |
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,22 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd" | ||
forceCoversAnnotation="true" | ||
defaultTestSuite="all" | ||
colors="true"> | ||
<testsuites> | ||
<testsuite name="all"> | ||
<directory>tests/</directory> | ||
</testsuite> | ||
</testsuites> | ||
<coverage processUncoveredFiles="true"> | ||
<include> | ||
<directory suffix=".php">src/</directory> | ||
<directory suffix=".php">generated/</directory> | ||
</include> | ||
<exclude> | ||
<file>generated/LookupTable.php</file> | ||
</exclude> | ||
</coverage> | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" | ||
defaultTestSuite="all" | ||
colors="true" | ||
cacheDirectory="build/.phpunit.cache" | ||
requireCoverageMetadata="true"> | ||
<testsuites> | ||
<testsuite name="all"> | ||
<directory>tests/</directory> | ||
</testsuite> | ||
</testsuites> | ||
<source> | ||
<include> | ||
<directory>src/</directory> | ||
<directory>generated/</directory> | ||
</include> | ||
<exclude> | ||
<file>generated/LookupTable.php</file> | ||
</exclude> | ||
</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
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
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
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
Oops, something went wrong.