Skip to content

Commit 6f76fd9

Browse files
authored
Merge pull request #72 from coderflexx/laravel-12-support
Laravel 12.x Support.
2 parents bf6b7ea + b8cb299 commit 6f76fd9

10 files changed

+34
-26
lines changed

.github/workflows/dependabot-auto-merge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
- name: Dependabot metadata
1515
id: metadata
16-
uses: dependabot/fetch-metadata@v2.0.0
16+
uses: dependabot/fetch-metadata@v2.3.0
1717
with:
1818
github-token: "${{ secrets.GITHUB_TOKEN }}"
1919

.github/workflows/fix-php-code-style-issues.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
ref: ${{ github.head_ref }}
1414

1515
- name: Fix PHP code style issues
16-
uses: aglipanci/laravel-pint-action@2.3.1
16+
uses: aglipanci/laravel-pint-action@2.5
1717

1818
- name: Commit changes
1919
uses: stefanzweifel/git-auto-commit-action@v5

.github/workflows/run-tests.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@ jobs:
1919
fail-fast: true
2020
matrix:
2121
os: [ubuntu-latest, windows-latest]
22-
php: [8.1, 8.2]
23-
laravel: [9.*, 10.*, 11.*]
22+
php: [8.1, 8.2, 8.3]
23+
laravel: [10.*, 11.*, 12.*]
2424
stability: [prefer-lowest, prefer-stable]
2525
include:
26-
- laravel: 9.*
27-
testbench: 7.*
2826
- laravel: 10.*
2927
testbench: 8.*
3028
- laravel: 11.*
3129
testbench: 9.*
30+
- laravel: 12.*
31+
testbench: 10.*
3232
exclude:
33-
- laravel: 9.*
34-
php: 8.2
35-
- larvel: 11.*
33+
- laravel: 11.*
34+
php: 8.1
35+
- laravel: 12.*
3636
php: 8.1
3737

3838
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}

composer.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@
1818
"require": {
1919
"php": "^8.1",
2020
"spatie/laravel-package-tools": "^1.13.0",
21-
"illuminate/contracts": "^9.0|^10.0|^11.0"
21+
"illuminate/contracts": "^9.0|^10.0|^11.0|^12.0"
2222
},
2323
"require-dev": {
2424
"laravel/pint": "^1.0",
2525
"nunomaduro/collision": "^6.0|^7.0|^8.0",
26-
"nunomaduro/larastan": "^2.0.1",
27-
"orchestra/testbench": "^7.0|^8.0|^9.0",
28-
"pestphp/pest": "^1.21",
29-
"pestphp/pest-plugin-laravel": "^1.1",
26+
"nunomaduro/larastan": "^2.0.1|^3.0",
27+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
28+
"phpunit/phpunit": "^9.5|^10.0|^11.0",
29+
"pestphp/pest": "^1.21|^2.0|^3.7",
30+
"pestphp/pest-plugin-arch": "^2.0|^3.0",
3031
"phpstan/extension-installer": "^1.1",
31-
"phpstan/phpstan-deprecation-rules": "^1.0",
32-
"phpstan/phpstan-phpunit": "^1.0",
33-
"phpunit/phpunit": "^9.5|^10.0|^11.0"
32+
"phpstan/phpstan-deprecation-rules": "^1.0|^2.0",
33+
"phpstan/phpstan-phpunit": "^1.0|^2.0"
3434
},
3535
"autoload": {
3636
"psr-4": {

config/laravel_ticket.php

+9-1
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,13 @@
7373
],
7474
],
7575
],
76-
76+
/**
77+
* Models for Eloquent relationships
78+
*/
79+
'models' => [
80+
'ticket' => \Coderflex\LaravelTicket\Models\Ticket::class,
81+
'message' => \Coderflex\LaravelTicket\Models\Message::class,
82+
'category' => \Coderflex\LaravelTicket\Models\Category::class,
83+
'label' => \Coderflex\LaravelTicket\Models\Label::class,
84+
],
7785
];

src/Models/Category.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class Category extends Model
2424
*/
2525
public function tickets(): BelongsToMany
2626
{
27-
return $this->belongsToMany(Ticket::class);
27+
return $this->belongsToMany(config('laravel_ticket.models.ticket'));
2828
}
2929

3030
/**

src/Models/Label.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class Label extends Model
2424
*/
2525
public function tickets(): BelongsToMany
2626
{
27-
return $this->belongsToMany(Ticket::class);
27+
return $this->belongsToMany(config('laravel_ticket.models.ticket'));
2828
}
2929

3030
/**

src/Models/Message.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function ticket(): BelongsTo
3131
$tableName = config('laravel_ticket.table_names.messages', 'messages');
3232

3333
return $this->belongsTo(
34-
Ticket::class,
34+
config('laravel_ticket.models.ticket'),
3535
$tableName['columns']['ticket_foreign_id']
3636
);
3737
}

src/Models/Ticket.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function messages(): HasMany
6161
$tableName = config('laravel_ticket.table_names.messages', 'messages');
6262

6363
return $this->hasMany(
64-
Message::class,
64+
config('laravel_ticket.models.message'),
6565
(string) $tableName['columns']['ticket_foreign_id'],
6666
);
6767
}
@@ -74,7 +74,7 @@ public function categories(): BelongsToMany
7474
$table = config('laravel_ticket.table_names.category_ticket', 'category_ticket');
7575

7676
return $this->belongsToMany(
77-
Category::class,
77+
config('laravel_ticket.models.category'),
7878
$table['table'],
7979
$table['columns']['ticket_foreign_id'],
8080
$table['columns']['category_foreign_id'],
@@ -89,7 +89,7 @@ public function labels(): BelongsToMany
8989
$table = config('laravel_ticket.table_names.label_ticket', 'label_ticket');
9090

9191
return $this->belongsToMany(
92-
Label::class,
92+
config('laravel_ticket.models.label'),
9393
$table['table'],
9494
$table['columns']['ticket_foreign_id'],
9595
$table['columns']['label_foreign_id'],
@@ -104,7 +104,7 @@ public function labels(): BelongsToMany
104104
public function getTable()
105105
{
106106
return config(
107-
'laravel_ticket.table_names.tickets',
107+
'laravel_ticket.models.tickets',
108108
parent::getTable()
109109
);
110110
}

tests/Database/Migrations/create_users_table.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
use Illuminate\Database\Schema\Blueprint;
55
use Illuminate\Support\Facades\Schema;
66

7-
return new class() extends Migration
7+
return new class extends Migration
88
{
99
public function up()
1010
{

0 commit comments

Comments
 (0)