Skip to content

Commit 1b9a56e

Browse files
committed
removed laravel 8
1 parent a4915d3 commit 1b9a56e

File tree

2 files changed

+32
-33
lines changed

2 files changed

+32
-33
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,9 @@ jobs:
1111
strategy:
1212
matrix:
1313
php: ['8.0', '8.1', '8.2']
14-
laravel: [8.*, 9.*, 10.*]
14+
laravel: [9.*, 10.*]
1515
stability: [prefer-lowest, prefer-stable]
1616
include:
17-
- laravel: 8.*
18-
testbench: ^6.6
1917
- laravel: 9.*
2018
testbench: 7.*
2119
- laravel: 10.*

composer.json

Lines changed: 31 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,64 @@
11
{
2-
"name":"akaunting/laravel-money",
3-
"description":"Currency formatting and conversion package for Laravel",
4-
"keywords":[
2+
"name": "akaunting/laravel-money",
3+
"description": "Currency formatting and conversion package for Laravel",
4+
"keywords": [
55
"laravel",
66
"money",
77
"currency",
88
"format",
99
"convert"
1010
],
11-
"license":"MIT",
12-
"authors":[
11+
"license": "MIT",
12+
"authors": [
1313
{
14-
"name":"Denis Duliçi",
15-
"email":"[email protected]",
16-
"homepage":"https://akaunting.com",
17-
"role":"Developer"
14+
"name": "Denis Duliçi",
15+
"email": "[email protected]",
16+
"homepage": "https://akaunting.com",
17+
"role": "Developer"
1818
}
1919
],
20-
"require":{
20+
"require": {
2121
"php": "^8.0",
22-
"illuminate/contracts": "^8.67|^9.0|^10.0",
23-
"illuminate/support": "^8.67|^9.0|^10.0",
24-
"illuminate/validation": "^8.67|^9.0|^10.0",
25-
"illuminate/view": "^8.67|^9.0|^10.0",
22+
"illuminate/contracts": "^9.0|^10.0",
23+
"illuminate/support": "^9.0|^10.0",
24+
"illuminate/validation": "^9.0|^10.0",
25+
"illuminate/view": "^9.0|^10.0",
2626
"vlucas/phpdotenv": "^5.4.1"
2727
},
28-
"require-dev":{
29-
"phpunit/phpunit":"^9.5",
30-
"orchestra/testbench": "^6.23|^7.4|^8.0",
28+
"require-dev": {
29+
"phpunit/phpunit": "^9.5",
30+
"orchestra/testbench": "^7.4|^8.0",
3131
"vimeo/psalm": "^4.23"
3232
},
33-
"autoload":{
34-
"psr-4":{
33+
"autoload": {
34+
"psr-4": {
3535
"Akaunting\\Money\\": "src"
3636
},
37-
"files":[
37+
"files": [
3838
"src/helpers.php"
3939
]
4040
},
4141
"autoload-dev": {
42-
"psr-4": {
43-
"Akaunting\\Money\\Tests\\": "tests"
44-
}
42+
"psr-4": {
43+
"Akaunting\\Money\\Tests\\": "tests"
44+
}
4545
},
46-
"extra":{
47-
"laravel":{
48-
"providers":[
46+
"extra": {
47+
"laravel": {
48+
"providers": [
4949
"Akaunting\\Money\\Provider"
5050
]
5151
}
5252
},
5353
"scripts": {
54-
"test": "vendor/bin/phpunit",
55-
"psalm": "vendor/bin/psalm"
54+
"test": "vendor/bin/phpunit",
55+
"psalm": "vendor/bin/psalm"
5656
},
57-
"minimum-stability": "dev",
5857
"config": {
5958
"allow-plugins": {
6059
"composer/package-versions-deprecated": true
6160
}
62-
}
61+
},
62+
"minimum-stability": "dev",
63+
"prefer-stable": true
6364
}

0 commit comments

Comments
 (0)