Skip to content

Commit c18b93a

Browse files
guixingguixing
authored andcommitted
feat: modernize package for PHP 8+ and Laravel 8–12
1 parent d79dfca commit c18b93a

22 files changed

Lines changed: 4090 additions & 1697 deletions

composer.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,26 @@
55
"type": "library",
66
"license": "MIT",
77
"require": {
8-
"php": ">7.3|^8.0",
9-
"laravel/framework" : "^8.0|^9.0"
8+
"php": "^8.0",
9+
"laravel/framework" : "^8.0|^9.0|^10.0|^11.0|^12.0"
1010
},
1111
"require-dev": {
1212
"mockery/mockery": "^1.0",
13-
"phpunit/phpunit": "^8.5.8|^9.3.3"
13+
"phpunit/phpunit": "^11.0",
14+
"orchestra/testbench": "^9.0"
1415
},
1516
"config": {
1617
"preferred-install": "dist",
1718
"sort-packages": true,
18-
"optimize-autoloader": true
19+
"optimize-autoloader": true,
20+
"audit": {
21+
"block-insecure": false
22+
}
1923
},
2024
"autoload": {
2125
"psr-4": {
22-
"Khsing\\World\\": "src/"
26+
"Khsing\\World\\": "src/",
27+
"Khsing\\World\\Database\\Seeders\\": "database/seeders/"
2328
}
2429
},
2530
"minimum-stability": "stable",

0 commit comments

Comments
 (0)