Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade dependencies #82

Merged
merged 3 commits into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading