Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Upgrade to Laravel 11 #47

Closed
wants to merge 1 commit into from
Closed
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 .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ language: php
dist: bionic

php:
- 8.1
- 8.2

cache:
directories:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

### v14.0.0 - TBA

- Add Laravel 11 support

### v13.0.0 - 2023-02-17

- Add Laravel 10 support
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
The BSD 3-Clause License
Copyright (c) 2011-2023, Cartalyst LLC
Copyright (c) 2011-2024, Cartalyst LLC
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ An open source package by [Cartalyst](https://cartalyst.com), code well, rock on
## Version Matrix

Version | Laravel | PHP Version
------- | --------- | ------------
------- |-----------| ------------
14.x | 11.x | >= 8.2
13.x | 10.x | >= 8.1
12.x | 9.x | >= 8.0
11.x | 8.x | >= 7.3
Expand Down Expand Up @@ -53,7 +54,7 @@ This software is released under the [BSD 3-Clause](LICENSE) License.
[link-license]: https://opensource.org/licenses/MIT
[link-packagist]: https://packagist.org/packages/cartalyst/tags

[icon-travis]: https://travis-ci.com/cartalyst/tags.svg?branch=13.x
[icon-travis]: https://travis-ci.com/cartalyst/tags.svg?branch=14.x
[icon-license]: https://poser.pugx.org/cartalyst/tags/license
[icon-version]: https://poser.pugx.org/cartalyst/tags/version
[icon-downloads]: https://poser.pugx.org/cartalyst/tags/downloads
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
}
],
"require": {
"php": "^8.1",
"illuminate/database": "^10.0"
"php": "^8.2",
"illuminate/database": "^11.0"
},
"require-dev": {
"cartalyst/php-cs-fixer-config": "^2.0",
"mockery/mockery": "^1.0",
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^9.0"
"orchestra/testbench": "^9.0",
"phpunit/phpunit": "^10.0 || ^11.0"
},
"autoload": {
"psr-4": {
Expand All @@ -43,7 +43,7 @@
"extra": {
"component": "package",
"branch-alias": {
"dev-master": "13.0.x-dev"
"dev-master": "14.0.x-dev"
},
"laravel": {
"providers": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 13.0.0
* @version 14.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2023, Cartalyst LLC
* @copyright (c) 2011-2024, Cartalyst LLC
* @link https://cartalyst.com
*/

Expand Down
4 changes: 2 additions & 2 deletions src/IlluminateTag.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 13.0.0
* @version 14.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2023, Cartalyst LLC
* @copyright (c) 2011-2024, Cartalyst LLC
* @link https://cartalyst.com
*/

Expand Down
4 changes: 2 additions & 2 deletions src/IlluminateTagged.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 13.0.0
* @version 14.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2023, Cartalyst LLC
* @copyright (c) 2011-2024, Cartalyst LLC
* @link https://cartalyst.com
*/

Expand Down
4 changes: 2 additions & 2 deletions src/TaggableInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 13.0.0
* @version 14.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2023, Cartalyst LLC
* @copyright (c) 2011-2024, Cartalyst LLC
* @link https://cartalyst.com
*/

Expand Down
4 changes: 2 additions & 2 deletions src/TaggableTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 13.0.0
* @version 14.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2023, Cartalyst LLC
* @copyright (c) 2011-2024, Cartalyst LLC
* @link https://cartalyst.com
*/

Expand Down
4 changes: 2 additions & 2 deletions src/TagsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 13.0.0
* @version 14.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2023, Cartalyst LLC
* @copyright (c) 2011-2024, Cartalyst LLC
* @link https://cartalyst.com
*/

Expand Down
4 changes: 2 additions & 2 deletions tests/FunctionalTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 13.0.0
* @version 14.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2023, Cartalyst LLC
* @copyright (c) 2011-2024, Cartalyst LLC
* @link https://cartalyst.com
*/

Expand Down
4 changes: 2 additions & 2 deletions tests/IlluminateTagTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 13.0.0
* @version 14.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2023, Cartalyst LLC
* @copyright (c) 2011-2024, Cartalyst LLC
* @link https://cartalyst.com
*/

Expand Down
4 changes: 2 additions & 2 deletions tests/Stubs/Post.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 13.0.0
* @version 14.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2023, Cartalyst LLC
* @copyright (c) 2011-2024, Cartalyst LLC
* @link https://cartalyst.com
*/

Expand Down
4 changes: 2 additions & 2 deletions tests/Stubs/Post2.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 13.0.0
* @version 14.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2023, Cartalyst LLC
* @copyright (c) 2011-2024, Cartalyst LLC
* @link https://cartalyst.com
*/

Expand Down
4 changes: 2 additions & 2 deletions tests/TaggableTraitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 13.0.0
* @version 14.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2023, Cartalyst LLC
* @copyright (c) 2011-2024, Cartalyst LLC
* @link https://cartalyst.com
*/

Expand Down