Skip to content

Commit bc1a284

Browse files
committed
Added PHP 8.2 Support
1 parent f3d9c13 commit bc1a284

File tree

2 files changed

+54
-55
lines changed

2 files changed

+54
-55
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16-
php: [7.4, 8.0]
16+
php: [7.4, 8.0, 8.1, 8.2]
1717
laravel: [8.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:

composer.json

Lines changed: 53 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,55 @@
11
{
2-
"name": "aneeskhan47/laravel-pagination-merge",
3-
"description": "Merge multiple laravel paginate instances",
4-
"keywords": [
5-
"aneeskhan47",
6-
"laravel-pagination-merge"
7-
],
8-
"homepage": "https://github.com/aneeskhan47/laravel-pagination-merge",
9-
"license": "MIT",
10-
"type": "library",
11-
"authors": [
12-
{
13-
"name": "Anees Khan",
14-
"email": "[email protected]",
15-
"role": "Developer"
16-
}
17-
],
18-
"require": {
19-
"php": "^7.2|^8.0|^8.1",
20-
"illuminate/support": "~5|^6|^7|^8|^9",
21-
"illuminate/pagination": "~5|^6|^7|^8|^9"
22-
},
23-
"require-dev": {
24-
"friendsofphp/php-cs-fixer": "^3.8",
25-
"orchestra/testbench": "^3.0|^4.0|^5.0|^6.0|^7.0",
26-
"phpunit/phpunit": "^8.5|^9.0"
27-
},
28-
"autoload": {
29-
"psr-4": {
30-
"Aneeskhan47\\PaginationMerge\\": "src"
31-
}
32-
},
33-
"autoload-dev": {
34-
"psr-4": {
35-
"Aneeskhan47\\PaginationMerge\\Test\\": "tests"
36-
}
37-
},
38-
"scripts": {
39-
"test": "vendor/bin/phpunit",
40-
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
41-
42-
},
43-
"config": {
44-
"sort-packages": true
45-
},
46-
"extra": {
47-
"laravel": {
48-
"providers": [
49-
"Aneeskhan47\\PaginationMerge\\PaginationMergeServiceProvider"
50-
],
51-
"aliases": {
52-
"PaginationMerge": "Aneeskhan47\\PaginationMerge\\Facades\\PaginationMerge"
53-
}
54-
}
2+
"name": "aneeskhan47/laravel-pagination-merge",
3+
"description": "Merge multiple laravel paginate instances",
4+
"keywords": [
5+
"aneeskhan47",
6+
"laravel-pagination-merge"
7+
],
8+
"homepage": "https://github.com/aneeskhan47/laravel-pagination-merge",
9+
"license": "MIT",
10+
"type": "library",
11+
"authors": [
12+
{
13+
"name": "Anees Khan",
14+
"email": "[email protected]",
15+
"role": "Developer"
5516
}
56-
}
17+
],
18+
"require": {
19+
"php": "^7.2|^8.0|^8.1|^8.2",
20+
"illuminate/support": "~5|^6|^7|^8|^9",
21+
"illuminate/pagination": "~5|^6|^7|^8|^9"
22+
},
23+
"require-dev": {
24+
"friendsofphp/php-cs-fixer": "^3.8",
25+
"orchestra/testbench": "^3.0|^4.0|^5.0|^6.0|^7.0",
26+
"phpunit/phpunit": "^8.5|^9.0"
27+
},
28+
"autoload": {
29+
"psr-4": {
30+
"Aneeskhan47\\PaginationMerge\\": "src"
31+
}
32+
},
33+
"autoload-dev": {
34+
"psr-4": {
35+
"Aneeskhan47\\PaginationMerge\\Test\\": "tests"
36+
}
37+
},
38+
"scripts": {
39+
"test": "vendor/bin/phpunit",
40+
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
41+
},
42+
"config": {
43+
"sort-packages": true
44+
},
45+
"extra": {
46+
"laravel": {
47+
"providers": [
48+
"Aneeskhan47\\PaginationMerge\\PaginationMergeServiceProvider"
49+
],
50+
"aliases": {
51+
"PaginationMerge": "Aneeskhan47\\PaginationMerge\\Facades\\PaginationMerge"
52+
}
53+
}
54+
}
55+
}

0 commit comments

Comments
 (0)