Skip to content

Commit 98ee40b

Browse files
committed
chore: Upgrade to Laravel 12
Signed-off-by: Bruno Gaspar <brunofgaspar1@gmail.com>
1 parent 6ce63fc commit 98ee40b

15 files changed

+34
-29
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
### v15.0.0 - TBA
4+
5+
- Add Laravel 12 support
6+
37
### v14.0.0 - 2024-03-25
48

59
- Add Laravel 11 support

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
The BSD 3-Clause License
2-
Copyright (c) 2011-2024, Cartalyst LLC
2+
Copyright (c) 2011-2025, Cartalyst LLC
33
All rights reserved.
44

55
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ An open source package by [Cartalyst](https://cartalyst.com), code well, rock on
1313

1414
Version | Laravel | PHP Version
1515
------- |-----------| ------------
16+
15.x | 12.x | >= 8.3
1617
14.x | 11.x | >= 8.2
1718
13.x | 10.x | >= 8.1
1819
12.x | 9.x | >= 8.0
@@ -54,7 +55,7 @@ This software is released under the [BSD 3-Clause](LICENSE) License.
5455
[link-license]: https://opensource.org/licenses/MIT
5556
[link-packagist]: https://packagist.org/packages/cartalyst/tags
5657

57-
[icon-travis]: https://travis-ci.com/cartalyst/tags.svg?branch=14.x
58+
[icon-travis]: https://travis-ci.com/cartalyst/tags.svg?branch=15.x
5859
[icon-license]: https://poser.pugx.org/cartalyst/tags/license
5960
[icon-version]: https://poser.pugx.org/cartalyst/tags/version
6061
[icon-downloads]: https://poser.pugx.org/cartalyst/tags/downloads

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.2",
20-
"illuminate/database": "^11.0"
19+
"php": "^8.3",
20+
"illuminate/database": "^12.0"
2121
},
2222
"require-dev": {
2323
"cartalyst/php-cs-fixer-config": "^2.0",
2424
"mockery/mockery": "^1.0",
25-
"orchestra/testbench": "^9.0",
26-
"phpunit/phpunit": "^10.0"
25+
"orchestra/testbench": "^10.0",
26+
"phpunit/phpunit": "^11.0"
2727
},
2828
"autoload": {
2929
"psr-4": {
@@ -43,7 +43,7 @@
4343
"extra": {
4444
"component": "package",
4545
"branch-alias": {
46-
"dev-master": "14.0.x-dev"
46+
"dev-master": "15.0.x-dev"
4747
},
4848
"laravel": {
4949
"providers": [

resources/migrations/2014_10_29_202547_migration_cartalyst_tags_create_tables.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
* bundled with this package in the LICENSE file.
1212
*
1313
* @package Tags
14-
* @version 14.0.0
14+
* @version 15.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2024, Cartalyst LLC
17+
* @copyright (c) 2011-2025, Cartalyst LLC
1818
* @link https://cartalyst.com
1919
*/
2020

src/IlluminateTag.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
* bundled with this package in the LICENSE file.
1212
*
1313
* @package Tags
14-
* @version 14.0.0
14+
* @version 15.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2024, Cartalyst LLC
17+
* @copyright (c) 2011-2025, Cartalyst LLC
1818
* @link https://cartalyst.com
1919
*/
2020

src/IlluminateTagged.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
* bundled with this package in the LICENSE file.
1212
*
1313
* @package Tags
14-
* @version 14.0.0
14+
* @version 15.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2024, Cartalyst LLC
17+
* @copyright (c) 2011-2025, Cartalyst LLC
1818
* @link https://cartalyst.com
1919
*/
2020

src/TaggableInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
* bundled with this package in the LICENSE file.
1212
*
1313
* @package Tags
14-
* @version 14.0.0
14+
* @version 15.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2024, Cartalyst LLC
17+
* @copyright (c) 2011-2025, Cartalyst LLC
1818
* @link https://cartalyst.com
1919
*/
2020

src/TaggableTrait.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
* bundled with this package in the LICENSE file.
1212
*
1313
* @package Tags
14-
* @version 14.0.0
14+
* @version 15.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2024, Cartalyst LLC
17+
* @copyright (c) 2011-2025, Cartalyst LLC
1818
* @link https://cartalyst.com
1919
*/
2020

src/TagsServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
* bundled with this package in the LICENSE file.
1212
*
1313
* @package Tags
14-
* @version 14.0.0
14+
* @version 15.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2024, Cartalyst LLC
17+
* @copyright (c) 2011-2025, Cartalyst LLC
1818
* @link https://cartalyst.com
1919
*/
2020

tests/FunctionalTestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
* bundled with this package in the LICENSE file.
1212
*
1313
* @package Tags
14-
* @version 14.0.0
14+
* @version 15.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2024, Cartalyst LLC
17+
* @copyright (c) 2011-2025, Cartalyst LLC
1818
* @link https://cartalyst.com
1919
*/
2020

tests/IlluminateTagTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
* bundled with this package in the LICENSE file.
1212
*
1313
* @package Tags
14-
* @version 14.0.0
14+
* @version 15.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2024, Cartalyst LLC
17+
* @copyright (c) 2011-2025, Cartalyst LLC
1818
* @link https://cartalyst.com
1919
*/
2020

tests/Stubs/Post.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
* bundled with this package in the LICENSE file.
1212
*
1313
* @package Tags
14-
* @version 14.0.0
14+
* @version 15.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2024, Cartalyst LLC
17+
* @copyright (c) 2011-2025, Cartalyst LLC
1818
* @link https://cartalyst.com
1919
*/
2020

tests/Stubs/Post2.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
* bundled with this package in the LICENSE file.
1212
*
1313
* @package Tags
14-
* @version 14.0.0
14+
* @version 15.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2024, Cartalyst LLC
17+
* @copyright (c) 2011-2025, Cartalyst LLC
1818
* @link https://cartalyst.com
1919
*/
2020

tests/TaggableTraitTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
* bundled with this package in the LICENSE file.
1212
*
1313
* @package Tags
14-
* @version 14.0.0
14+
* @version 15.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2024, Cartalyst LLC
17+
* @copyright (c) 2011-2025, Cartalyst LLC
1818
* @link https://cartalyst.com
1919
*/
2020

0 commit comments

Comments
 (0)