Skip to content

Commit

Permalink
Upgrade dependencies (#82)
Browse files Browse the repository at this point in the history
* upgrade dependencies
  • Loading branch information
pvsaintpe authored Apr 25, 2024
1 parent 3863237 commit dca1965
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 127 deletions.
48 changes: 0 additions & 48 deletions .github/labeler.config.yml

This file was deleted.

14 changes: 0 additions & 14 deletions .github/workflows/auto_approve.yml

This file was deleted.

14 changes: 0 additions & 14 deletions .github/workflows/auto_labeler.yml

This file was deleted.

38 changes: 0 additions & 38 deletions .github/workflows/auto_merge.yml

This file was deleted.

25 changes: 16 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ env:
DB_PASSWORD: 'postgres'
DB_HOST: '127.0.0.1'

jobs:
jobs:
lint:
runs-on: '${{ matrix.operating_system }}'
timeout-minutes: 20
strategy:
timeout-minutes: 20
strategy:
matrix:
operating_system:
- ubuntu-latest
php_versions:
- '7.4'
fail-fast: false
env:
env:
PHP_CS_FIXER_FUTURE_MODE: '0'
name: 'Lint PHP'
steps:
steps:
- name: 'Checkout'
uses: actions/checkout@v2
- name: 'Setup cache environment'
Expand All @@ -51,11 +51,11 @@ jobs:
key: '${{ steps.cache-env.outputs.key }}'
restore-keys: '${{ steps.cache-env.outputs.key }}'
- name: 'Setup PHP'
uses: shivammathur/setup-php@v2
with:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php_versions }}
extensions: '${{ env.php_extensions }}'
ini-values: memory_limit=-1
ini-values: memory_limit=-1
tools: pecl, composer
coverage: none
- name: 'Setup problem matchers for PHP (aka PHP error logs)'
Expand Down Expand Up @@ -108,6 +108,14 @@ jobs:
postgres: '13'
php_versions: '8.0'
experimental: true
- operating_system: ubuntu-latest
postgres: '14'
php_versions: '8.1'
experimental: true
- operating_system: ubuntu-latest
postgres: '15'
php_versions: '8.2'
experimental: true
runs-on: '${{ matrix.operating_system }}'
services:
postgres:
Expand Down Expand Up @@ -165,7 +173,6 @@ jobs:
-e "s/\${HOST}/${{ env.DB_HOST }}/" \
phpunit.xml.dist > phpunit.xml
./vendor/bin/phpunit \
--verbose \
--stderr \
--coverage-clover build/logs/clover.xml
working-directory: './'
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
],
"license": "MIT",
"require": {
"php": "^7.3|^7.4|^8.0|^8.1",
"laravel/framework": "^5.8|^6.20.26|^7.0|^8.40|^9.0|^10.0",
"php": "^7.3|^7.4|^8.0|^8.1|^8.2",
"laravel/framework": "^5.8|^6.20.26|^7.0|^8.40|^9.0|^10.0|^11.0",
"doctrine/dbal": "^2.9|^3.0",
"umbrellio/laravel-pg-extensions": "^5.0",
"umbrellio/laravel-pg-extensions": "^5.0|^6.0",
"umbrellio/laravel-common-objects": "^2.3"
},
"require-dev": {
"umbrellio/code-style-php": "^1.0",
"orchestra/testbench": "^3.5|^6.0",
"orchestra/testbench": "^3.5|^6.0|^4.0|^7.0|^8.0|^9.0",
"php-coveralls/php-coveralls": "^2.1",
"squizlabs/php_codesniffer": "^3.5"
},
Expand Down

0 comments on commit dca1965

Please sign in to comment.