From f9194a40bda85109dd3a2e27507f3f385cfa2844 Mon Sep 17 00:00:00 2001 From: chris Date: Mon, 11 Mar 2024 10:24:46 +0100 Subject: [PATCH 1/3] Add ci-tests for php 8.3, (#296) fix ci deprecations Co-authored-by: Christopher Georg --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd712cf..098044d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,14 +14,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Setup PHP - uses: shivammathur/setup-php@2.7.0 + uses: shivammathur/setup-php@2.30.0 with: php-version: 8.0 extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, pcre, pdo, zlib coverage: none - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install the dependencies run: composer install --no-interaction --no-suggest @@ -36,7 +36,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.0, 8.1, 8.2] + php: [8.0, 8.1, 8.2, 8.3] symfony: [4.4, 5.4, 6.0, 7.0] exclude: - symfony: 7.0 @@ -45,14 +45,14 @@ jobs: php: 8.1 steps: - name: Setup PHP - uses: shivammathur/setup-php@2.7.0 + uses: shivammathur/setup-php@2.30.0 with: php-version: ${{ matrix.php }} extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, pcre, pdo_mysql, zlib coverage: none - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install the dependencies run: | @@ -66,14 +66,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Setup PHP - uses: shivammathur/setup-php@2.7.0 + uses: shivammathur/setup-php@2.30.0 with: php-version: 8.0 extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, pcre, pdo_mysql, zlib coverage: none - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install the dependencies run: composer update --prefer-lowest --prefer-stable --no-interaction --no-suggest From 27abac95cdee7ccbb4faf0578590ee363cf24baa Mon Sep 17 00:00:00 2001 From: chris Date: Mon, 11 Mar 2024 10:28:09 +0100 Subject: [PATCH 2/3] Add folders to .gitignore (#298) Co-authored-by: Christopher Georg --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 8a0d354..8005c5f 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,6 @@ vendor tests/App/cache tests/App/logs tests/App/var +cache +var/cache +var/log From abccc17b75947280fe5824be60dcaeaaa8c45c1a Mon Sep 17 00:00:00 2001 From: chris Date: Mon, 11 Mar 2024 10:31:07 +0100 Subject: [PATCH 3/3] Improve README.md (#300) Co-authored-by: Christopher Georg --- README.md | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 77fae61..58a79e0 100644 --- a/README.md +++ b/README.md @@ -10,11 +10,11 @@ The OneupFlysystemBundle provides a [Flysystem](https://github.com/thephpleague/ * [Google Cloud Storage](https://cloud.google.com/storage) * [AsyncAwsS3](https://async-aws.com/) -* [AwsS3](http://aws.amazon.com/de/sdkforphp/) +* [AwsS3](https://aws.amazon.com/de/sdk-for-php/) * [AzureBlobStorage](https://azure.microsoft.com/en-us/services/storage/blobs/) -* [Ftp](http://php.net/manual/en/book.ftp.php) -* [Local filesystem](http://php.net/manual/en/ref.filesystem.php) -* [Sftp](http://phpseclib.sourceforge.net/sftp/intro.html) +* [Ftp](https://www.php.net/manual/en/book.ftp.php) +* [Local filesystem](https://www.php.net/manual/en/ref.filesystem.php) +* [Sftp](https://phpseclib.sourceforge.net/sftp/intro.html) Documentation ------------- @@ -32,10 +32,7 @@ If you're looking for Flysystem 1.x support, check out the [3.x-branch](https:// License ------- -This bundle is under the MIT license. See the complete license in the bundle: - - LICENSE - +This bundle is under the MIT license. See the [complete license](LICENSE) in the bundle: Reporting an issue or a feature request ---------------------------------------