Skip to content

Commit f086edb

Browse files
committed
Appended PHP ^8.4 to requirement
1 parent 49ed82c commit f086edb

File tree

1 file changed

+74
-74
lines changed

1 file changed

+74
-74
lines changed

composer.json

Lines changed: 74 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -1,76 +1,76 @@
11
{
2-
"name": "cleaniquecoders/laravel-running-number",
3-
"description": "Generate running number when creating new records in your table.",
4-
"keywords": [
5-
"cleaniquecoders",
6-
"laravel",
7-
"laravel-running-number"
8-
],
9-
"homepage": "https://github.com/cleaniquecoders/laravel-running-number",
10-
"license": "MIT",
11-
"authors": [
12-
{
13-
"name": "Nasrul Hazim Bin Mohamad",
14-
"email": "[email protected]",
15-
"role": "Developer"
16-
}
17-
],
18-
"require": {
19-
"php": "^8.1 | ^8.2 | ^8.3",
20-
"illuminate/contracts": "^9.0 | ^10.0 | ^11.0",
21-
"spatie/laravel-enum": "^3.0",
22-
"spatie/laravel-package-tools": "^1.14"
23-
},
24-
"require-dev": {
25-
"larastan/larastan": "^2.9",
26-
"laravel/pint": "^1.6",
27-
"nunomaduro/collision": "^7.0",
28-
"orchestra/testbench": "^8.0 | ^9.0",
29-
"pestphp/pest": "^2.0",
30-
"pestphp/pest-plugin-laravel": "^2.0",
31-
"phpstan/extension-installer": "^1.1",
32-
"phpstan/phpstan-deprecation-rules": "^1.0",
33-
"phpstan/phpstan-phpunit": "^1.0",
34-
"phpunit/phpunit": "^9.5|^10.0",
35-
"spatie/laravel-ray": "^1.26"
36-
},
37-
"autoload": {
38-
"psr-4": {
39-
"CleaniqueCoders\\RunningNumber\\": "src",
40-
"CleaniqueCoders\\RunningNumber\\Database\\Factories\\": "database/factories"
2+
"name": "cleaniquecoders/laravel-running-number",
3+
"description": "Generate running number when creating new records in your table.",
4+
"keywords": [
5+
"cleaniquecoders",
6+
"laravel",
7+
"laravel-running-number"
8+
],
9+
"homepage": "https://github.com/cleaniquecoders/laravel-running-number",
10+
"license": "MIT",
11+
"authors": [
12+
{
13+
"name": "Nasrul Hazim Bin Mohamad",
14+
"email": "[email protected]",
15+
"role": "Developer"
16+
}
17+
],
18+
"require": {
19+
"php": "^8.1 | ^8.2 | ^8.3 | ^8.4",
20+
"illuminate/contracts": "^9.0 | ^10.0 | ^11.0",
21+
"spatie/laravel-enum": "^3.0",
22+
"spatie/laravel-package-tools": "^1.14"
4123
},
42-
"files": [
43-
"support/helpers.php"
44-
]
45-
},
46-
"autoload-dev": {
47-
"psr-4": {
48-
"CleaniqueCoders\\RunningNumber\\Tests\\": "tests"
49-
}
50-
},
51-
"scripts": {
52-
"analyse": "vendor/bin/phpstan analyse",
53-
"test": "vendor/bin/pest",
54-
"format": "vendor/bin/pint",
55-
"test-coverage": "vendor/bin/pest coverage"
56-
},
57-
"config": {
58-
"sort-packages": true,
59-
"allow-plugins": {
60-
"pestphp/pest-plugin": true,
61-
"phpstan/extension-installer": true
62-
}
63-
},
64-
"extra": {
65-
"laravel": {
66-
"providers": [
67-
"CleaniqueCoders\\RunningNumber\\RunningNumberServiceProvider"
68-
],
69-
"aliases": {
70-
"RunningNumber": "CleaniqueCoders\\RunningNumber\\Facades\\RunningNumber"
71-
}
72-
}
73-
},
74-
"minimum-stability": "dev",
75-
"prefer-stable": true
76-
}
24+
"require-dev": {
25+
"larastan/larastan": "^2.9",
26+
"laravel/pint": "^1.6",
27+
"nunomaduro/collision": "^7.0",
28+
"orchestra/testbench": "^8.0 | ^9.0",
29+
"pestphp/pest": "^2.0",
30+
"pestphp/pest-plugin-laravel": "^2.0",
31+
"phpstan/extension-installer": "^1.1",
32+
"phpstan/phpstan-deprecation-rules": "^1.0",
33+
"phpstan/phpstan-phpunit": "^1.0",
34+
"phpunit/phpunit": "^9.5|^10.0",
35+
"spatie/laravel-ray": "^1.26"
36+
},
37+
"autoload": {
38+
"psr-4": {
39+
"CleaniqueCoders\\RunningNumber\\": "src",
40+
"CleaniqueCoders\\RunningNumber\\Database\\Factories\\": "database/factories"
41+
},
42+
"files": [
43+
"support/helpers.php"
44+
]
45+
},
46+
"autoload-dev": {
47+
"psr-4": {
48+
"CleaniqueCoders\\RunningNumber\\Tests\\": "tests"
49+
}
50+
},
51+
"scripts": {
52+
"analyse": "vendor/bin/phpstan analyse",
53+
"test": "vendor/bin/pest",
54+
"format": "vendor/bin/pint",
55+
"test-coverage": "vendor/bin/pest coverage"
56+
},
57+
"config": {
58+
"sort-packages": true,
59+
"allow-plugins": {
60+
"pestphp/pest-plugin": true,
61+
"phpstan/extension-installer": true
62+
}
63+
},
64+
"extra": {
65+
"laravel": {
66+
"providers": [
67+
"CleaniqueCoders\\RunningNumber\\RunningNumberServiceProvider"
68+
],
69+
"aliases": {
70+
"RunningNumber": "CleaniqueCoders\\RunningNumber\\Facades\\RunningNumber"
71+
}
72+
}
73+
},
74+
"minimum-stability": "dev",
75+
"prefer-stable": true
76+
}

0 commit comments

Comments
 (0)