Skip to content
This repository was archived by the owner on Oct 1, 2021. It is now read-only.
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
4 changes: 2 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "7.4"
php-version: "8.0"
extensions: mbstring, dom, fileinfo, intl, gd, imagick, bcmath, soap, zip, sqlite, pcov
coverage: pcov

- name: Install
run: composer install --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist --optimize-autoloader
run: composer install --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist --optimize-autoloader --ignore-platform-reqs

- name: Run php-cs-fixer
run: composer format
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "7.4"
php-version: "8.0"
extensions: mbstring, dom, fileinfo, intl, gd, imagick, bcmath, soap, zip, sqlite, pcov
coverage: pcov

Expand All @@ -30,7 +30,7 @@ jobs:
key: dependencies-composer-${{ hashFiles('composer.json') }}

- name: Install Composer dependencies
run: composer install --no-ansi --no-interaction --no-suggest --no-progress --prefer-dist --optimize-autoloader
run: composer install --no-ansi --no-interaction --no-suggest --no-progress --prefer-dist --optimize-autoloader --ignore-platform-reqs

- name: Run PHPStan
run: ./vendor/bin/phpstan analyse --memory-limit=2G
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "7.4"
php-version: "8.0"
extensions: mbstring, dom, fileinfo, intl, gd, imagick, bcmath, soap, zip, sqlite, pcov
coverage: pcov

Expand All @@ -30,7 +30,7 @@ jobs:
key: dependencies-composer-${{ hashFiles('composer.json') }}

- name: Install Composer dependencies
run: composer install --no-ansi --no-interaction --no-suggest --no-progress --prefer-dist --optimize-autoloader
run: composer install --no-ansi --no-interaction --no-suggest --no-progress --prefer-dist --optimize-autoloader --ignore-platform-reqs

- name: Run Tests
run: composer test
17 changes: 3 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,15 @@
"require": {
"illuminate/support": "^8.28",
"graham-campbell/markdown": "^13.1",
"spatie/regex": "^1.4",
"spatie/regex": "^2.0",
"league/commonmark": "^1.5",
"calebporzio/sushi": "^2.1",
"spatie/yaml-front-matter": "^2.0",
"unicorn-fail/emoji": "1.0.x-dev",
"arkecosystem/ui": "^3.0"
"arkecosystem/ui": "^4.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"graham-campbell/analyzer": "^3.0",
"mockery/mockery": "^1.4",
"nunomaduro/larastan": "^0.7.0",
"nunomaduro/laravel-mojito": "^0.2.7",
"pestphp/pest": "^1.0.0",
"pestphp/pest-plugin-faker": "^1.0.0",
"pestphp/pest-plugin-laravel": "^1.0.0",
"pestphp/pest-plugin-livewire": "^1.0.0",
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^6.2",
"spatie/pest-plugin-snapshots": "^1.0",
"arkecosystem/stan": "^3.3",
"guzzlehttp/guzzle": "^7.3"
},
"autoload": {
Expand Down
Loading