Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/formats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
with:
php-version: '8.3'
php-version: '8.5'
extensions: mbstring, dom, fileinfo

- name: Install Composer dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
with:
php-version: '8.3'
php-version: '8.5'
extensions: mbstring, dom, fileinfo
coverage: xdebug #optional
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
.php_cs.cache
.phpunit.result.cache
.php-cs-fixer.cache
composer.lock
.phpunit.cache/
34 changes: 22 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,25 @@
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.3",
"php": "^8.5",
"ext-json": "*",
"ext-redis": "*",
"laravel/framework": "^11.0",
"laravel/horizon": "^5.0",
"seatplus/esi-client": "^3.0"
"seatplus/esi-client": "^4.0"
},
"require-dev": {
"orchestra/testbench": "^9.0",
"nunomaduro/collision": "^v8.1",
"itsgoingd/clockwork": "^5.0",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
"pestphp/pest-plugin-type-coverage": "^3.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"larastan/larastan": "^2.0",
"rector/rector": "^1.2",
"driftingly/rector-laravel": "^1.2",
"pestphp/pest": "^4.0",
"pestphp/pest-plugin-laravel": "^4.0",
"pestphp/pest-plugin-type-coverage": "^4.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"larastan/larastan": "^3.0",
"rector/rector": "^2.0",
"driftingly/rector-laravel": "^2.0",
"laravel/pint": "^1.9"
},
"extra": {
Expand All @@ -57,7 +57,7 @@
"lint": "vendor/bin/pint",
"test:lint": "vendor/bin/pint --test",
"test:types": "vendor/bin/phpstan --ansi",
"test:type-coverage": "vendor/bin/pest --type-coverage --min=100",
"test:type-coverage": "FORK_MEM_PER_PROC=99999999999 vendor/bin/pest --type-coverage --min=100",
"test:unit": "vendor/bin/pest --colors=always",
"test:unit-coverage": "XDEBUG_MODE=coverage vendor/bin/pest --coverage --colors=always",
"test": [
Expand All @@ -71,5 +71,15 @@
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
},
"repositories": [
{
"type": "path",
"url": "../esi-client",
"options": {
"symlink": true,
"canonical": false
}
}
]
}
Loading
Loading