Skip to content

Commit da9dc06

Browse files
committed
chore: Upgrade to Laravel 10
Signed-off-by: Bruno Gaspar <brunofgaspar1@gmail.com>
1 parent 59ccb78 commit da9dc06

16 files changed

+34
-30
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ language: php
33
dist: bionic
44

55
php:
6-
- 8.0
7-
- 8.1.0
6+
- 8.1
87

98
cache:
109
directories:

CHANGELOG.md

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

3+
### v13.0.0 - TBA
4+
5+
- Add Laravel 10 support
6+
37
### v12.0.0 - 2022-02-18
48

59
- Add Laravel 9 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-2022, Cartalyst LLC
2+
Copyright (c) 2011-2023, 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+
13.x | 10.x | >= 8.1
1617
12.x | 9.x | >= 8.0
1718
11.x | 8.x | >= 7.3
1819
10.x | 7.x | >= 7.2.5
@@ -52,7 +53,7 @@ This software is released under the [BSD 3-Clause](LICENSE) License.
5253
[link-license]: https://opensource.org/licenses/MIT
5354
[link-packagist]: https://packagist.org/packages/cartalyst/tags
5455

55-
[icon-travis]: https://travis-ci.com/cartalyst/tags.svg?branch=11.x
56+
[icon-travis]: https://travis-ci.com/cartalyst/tags.svg?branch=13.x
5657
[icon-license]: https://poser.pugx.org/cartalyst/tags/license
5758
[icon-version]: https://poser.pugx.org/cartalyst/tags/version
5859
[icon-downloads]: https://poser.pugx.org/cartalyst/tags/downloads

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.0",
20-
"illuminate/database": "^9.0"
19+
"php": "^8.1",
20+
"illuminate/database": "^10.0"
2121
},
2222
"require-dev": {
2323
"cartalyst/php-cs-fixer-config": "^2.0",
2424
"mockery/mockery": "^1.0",
25-
"orchestra/testbench": "^7.0",
25+
"orchestra/testbench": "^8.0",
2626
"phpunit/phpunit": "^9.0"
2727
},
2828
"autoload": {
@@ -43,7 +43,7 @@
4343
"extra": {
4444
"component": "package",
4545
"branch-alias": {
46-
"dev-master": "12.0.x-dev"
46+
"dev-master": "13.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 12.0.0
14+
* @version 13.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2022, Cartalyst LLC
17+
* @copyright (c) 2011-2023, 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 12.0.0
14+
* @version 13.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2022, Cartalyst LLC
17+
* @copyright (c) 2011-2023, 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 12.0.0
14+
* @version 13.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2022, Cartalyst LLC
17+
* @copyright (c) 2011-2023, 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 12.0.0
14+
* @version 13.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2022, Cartalyst LLC
17+
* @copyright (c) 2011-2023, 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 12.0.0
14+
* @version 13.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2022, Cartalyst LLC
17+
* @copyright (c) 2011-2023, 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 12.0.0
14+
* @version 13.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2022, Cartalyst LLC
17+
* @copyright (c) 2011-2023, 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 12.0.0
14+
* @version 13.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2022, Cartalyst LLC
17+
* @copyright (c) 2011-2023, 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 12.0.0
14+
* @version 13.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2022, Cartalyst LLC
17+
* @copyright (c) 2011-2023, 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 12.0.0
14+
* @version 13.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2022, Cartalyst LLC
17+
* @copyright (c) 2011-2023, 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 12.0.0
14+
* @version 13.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2022, Cartalyst LLC
17+
* @copyright (c) 2011-2023, 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 12.0.0
14+
* @version 13.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2022, Cartalyst LLC
17+
* @copyright (c) 2011-2023, Cartalyst LLC
1818
* @link https://cartalyst.com
1919
*/
2020

0 commit comments

Comments
 (0)