diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3bdb8f0..7c5b7e8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -28,28 +28,28 @@ jobs: extensions: intl, xsl - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Get composer cache directory id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache composer dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ runner.os }}-composer- - name: Cache php-cs-fixer data - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .php_cs_cache key: "php-${{ matrix.php-version }}-php-cs-fixer-${{ github.sha }}" restore-keys: "php-${{ matrix.php-version }}-php-cs-fixer-" - name: Cache phpstan data - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .phpstan_cache key: "php-${{ matrix.php-version }}-phpstan-${{ github.sha }}" diff --git a/build.xml b/build.xml index ba88444..74e498d 100644 --- a/build.xml +++ b/build.xml @@ -1,5 +1,6 @@ + @@ -41,39 +42,57 @@ - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + - + + + @@ -106,30 +125,40 @@ --> - + + + - + + + - + + + - + + + - + + + diff --git a/composer.json b/composer.json index 516e19e..2313166 100644 --- a/composer.json +++ b/composer.json @@ -27,11 +27,12 @@ }, "require-dev": { "friendsofphp/php-cs-fixer": "3.64.0", + "guzzlehttp/guzzle": "^7.8.1", "pear/http_request2": "2.6.0", "phpmd/phpmd": "2.15.0", "phpstan/phpstan": "1.12.7", "phpunit/phpunit": "10.5.36", - "phing/phing": "2.17.4", + "phing/phing": "3.0", "squizlabs/php_codesniffer": "3.10.3" } }