Skip to content

Commit 86a5e23

Browse files
Merge pull request #109 from TheDragonCode/4.x
[4.x] Upgrade project
2 parents e929911 + 2c8c76d commit 86a5e23

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+372
-303
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ body:
1414
attributes:
1515
label: Environment
1616
description: |
17-
Tip: Use the `composer info dragon-code/laravel-migration-actions` command to get information for Laravel Lang.
17+
Tip: Use the `composer info dragon-code/laravel-actions` command to get information for Laravel Lang.
1818
Tip: Use the `php artisan --version` command to get information for Laravel Framework.
1919
Tip: Use the `php -v` command to get information for PHP.
2020
value: |

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
release-notes: ${{ github.event.release.body }}
3636
latest-version: ${{ github.event.release.tag_name }}
3737
compare-url-target-revision: ${{ github.event.release.target_commitish }}
38-
path-to-changelog: docs/prologue/changelog/3.x.md
38+
path-to-changelog: docs/prologue/changelog/4.x.md
3939

4040
- name: Storing
4141
id: changelog

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@ See the [documentation](https://actions.dragon-code.pro) for detailed installati
2020
This package is licensed under the [MIT License](LICENSE).
2121

2222

23-
[badge_build]: https://img.shields.io/github/actions/workflow/status/TheDragonCode/laravel-migration-actions/laravel.yml?style=flat-square
23+
[badge_build]: https://img.shields.io/github/actions/workflow/status/TheDragonCode/laravel-actions/laravel.yml?style=flat-square
2424

25-
[badge_downloads]: https://img.shields.io/packagist/dt/dragon-code/laravel-migration-actions.svg?style=flat-square
25+
[badge_downloads]: https://img.shields.io/packagist/dt/dragon-code/laravel-actions.svg?style=flat-square
2626

27-
[badge_license]: https://img.shields.io/packagist/l/dragon-code/laravel-migration-actions.svg?style=flat-square
27+
[badge_license]: https://img.shields.io/packagist/l/dragon-code/laravel-actions.svg?style=flat-square
2828

29-
[badge_stable]: https://img.shields.io/github/v/release/TheDragonCode/laravel-migration-actions?label=stable&style=flat-square
29+
[badge_stable]: https://img.shields.io/github/v/release/TheDragonCode/laravel-actions?label=stable&style=flat-square
3030

3131
[badge_unstable]: https://img.shields.io/badge/unstable-dev--main-orange?style=flat-square
3232

33-
[link_build]: https://github.com/TheDragonCode/laravel-migration-actions/actions
33+
[link_build]: https://github.com/TheDragonCode/laravel-actions/actions
3434

3535
[link_license]: LICENSE
3636

37-
[link_packagist]: https://packagist.org/packages/dragon-code/laravel-migration-actions
37+
[link_packagist]: https://packagist.org/packages/dragon-code/laravel-actions

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "dragon-code/laravel-migration-actions",
2+
"name": "dragon-code/laravel-actions",
33
"description": "Performing actions with saving the list of called files",
44
"license": "MIT",
55
"type": "library",
@@ -21,8 +21,8 @@
2121
}
2222
],
2323
"support": {
24-
"issues": "https://github.com/TheDragonCode/laravel-migration-actions/issues",
25-
"source": "https://github.com/TheDragonCode/laravel-migration-actions"
24+
"issues": "https://github.com/TheDragonCode/laravel-actions/issues",
25+
"source": "https://github.com/TheDragonCode/laravel-actions"
2626
},
2727
"funding": [
2828
{

config/actions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
|
2525
*/
2626

27-
'table' => 'migration_actions',
27+
'table' => 'actions',
2828

2929
/*
3030
|--------------------------------------------------------------------------
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
<?php
22

3-
use DragonCode\LaravelActions\Database\BaseChangeMigrationColumn;
3+
declare(strict_types=1);
44

5-
return new class () extends BaseChangeMigrationColumn
5+
use DragonCode\LaravelActions\Database\BaseChangeColumn;
6+
7+
return new class () extends BaseChangeColumn
68
{
79
};
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
use DragonCode\LaravelActions\Database\BaseRenameMigrationsActionsTableToActions;
6+
7+
return new class () extends BaseRenameMigrationsActionsTableToActions
8+
{
9+
};
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
<?php
22

3-
use DragonCode\LaravelActions\Database\BaseChangeMigrationColumn;
3+
declare(strict_types=1);
44

5-
class ChangeMigrationActionsTable extends BaseChangeMigrationColumn
5+
use DragonCode\LaravelActions\Database\BaseChangeColumn;
6+
7+
class ChangeMigrationActionsTable extends BaseChangeColumn
68
{
79
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
use DragonCode\LaravelActions\Database\BaseRenameMigrationsActionsTableToActions;
6+
7+
class RenameMigrationsActionsTableToActions extends BaseRenameMigrationsActionsTableToActions
8+
{
9+
}

docs/.vuepress/config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ module.exports = {
2626

2727
logo: `https://${ hostname }/images/logo.svg`,
2828

29-
repo: 'https://github.com/TheDragonCode/laravel-migration-actions',
29+
repo: 'https://github.com/TheDragonCode/laravel-actions',
3030
repoLabel: 'GitHub',
31-
docsRepo: 'https://github.com/TheDragonCode/laravel-migration-actions',
31+
docsRepo: 'https://github.com/TheDragonCode/laravel-actions',
3232
docsBranch: 'main',
3333
docsDir: 'docs',
3434

0 commit comments

Comments
 (0)