From 175ec7349380713fa48bce2baf6dd04e8666422b Mon Sep 17 00:00:00 2001 From: Susan Turkel <107194029+sturkel89@users.noreply.github.com> Date: Thu, 11 Jul 2024 09:41:30 -0400 Subject: [PATCH 1/2] Updated composer.json and build.xml to phing3 standards (#16) --- build.xml | 57 ++++++++++++++++++++++++++++++++++++++------------- composer.json | 3 ++- 2 files changed, 45 insertions(+), 15 deletions(-) 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 7de43a5..7f9a387 100644 --- a/composer.json +++ b/composer.json @@ -27,11 +27,12 @@ }, "require-dev": { "friendsofphp/php-cs-fixer": "3.51.0", + "guzzlehttp/guzzle": "^7.8.1", "pear/http_request2": "2.6.0", "phpmd/phpmd": "2.15.0", "phpstan/phpstan": "1.10.59", "phpunit/phpunit": "10.5.11", - "phing/phing": "2.17.4", + "phing/phing": "3.0", "squizlabs/php_codesniffer": "3.9.0" } } From 9eeb382e493175bdf50769477c29d678e8543009 Mon Sep 17 00:00:00 2001 From: Susan Turkel <107194029+sturkel89@users.noreply.github.com> Date: Wed, 17 Jul 2024 15:03:10 -0400 Subject: [PATCH 2/2] Updated GitHub Actions (#17) --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 }}"