Skip to content
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
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.2,8.3]
laravel: [11.*]
php: [8.2,8.3,8.4]
laravel: [12.*]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: 11.*
testbench: 9.*
- laravel: 12.*
testbench: 10.*
carbon: ^3

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
}
],
"require": {
"php": "^8.2|^8.3",
"php": "^8.2|^8.3|^8.4",
"spatie/laravel-package-tools": "^1.14.0",
"laravel/framework": "^11.0"
"laravel/framework": "^12.0"
},
"require-dev": {
"laravel/pint": "^1.0",
"nunomaduro/collision": "^8.0",
"nunomaduro/larastan": "^v3",
"orchestra/testbench": "^9",
"larastan/larastan": "^v3",
"orchestra/testbench": "^10",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-arch": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
Expand Down
2 changes: 1 addition & 1 deletion phpstan.neon.dist
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ parameters:
tmpDir: build/phpstan
checkOctaneCompatibility: true
checkModelProperties: true
checkMissingIterableValueType: false


2 changes: 1 addition & 1 deletion src/ArFlowServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function configurePackage(Package $package): void
->name('arflow')
->hasConfigFile('arflow')
->hasViews()
//->hasMigration('create_arflow_history_table')
// ->hasMigration('create_arflow_history_table')
->hasCommand(ArFlowCommand::class);

}
Expand Down
4 changes: 2 additions & 2 deletions tests/PackageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
beforeEach(function () {
Artisan::call('migrate:fresh');

//include_once __DIR__.'/../database/migrations/create_arflow_history_table.php';
//(new create_arflow_history_table)->up();
// include_once __DIR__.'/../database/migrations/create_arflow_history_table.php';
// (new create_arflow_history_table)->up();

Config::set(
[
Expand Down
Loading