Skip to content

Commit

Permalink
build: Organise composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
cjmellor committed Mar 18, 2024
1 parent bf75908 commit ce5ba51
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,45 +16,46 @@
}
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^9.0|^10.0|^11.0",
"spatie/laravel-package-tools": "^1.14.0"
"php": "^8.1|^8.2",
"illuminate/contracts": "^9.0|^10.0|^11.0"
},
"require-dev": {
"laravel/pint": "^1.0",
"nunomaduro/collision": "^7.0|^8.0",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-type-coverage": "^2.0"
"pestphp/pest-plugin-laravel": "^2.2",
"pestphp/pest-plugin-type-coverage": "^2.0",
"spatie/laravel-package-tools": "^1.16.2"
},
"autoload": {
"psr-4": {
"Cjmellor\\Approval\\": "src"
"Approval\\Approval\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cjmellor\\Approval\\Tests\\": "tests"
"Approval\\Approval\\Tests\\": "tests/"
}
},
"scripts": {
"format": "vendor/bin/pint",
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Cjmellor\\Approval\\ApprovalServiceProvider"
"Approval\\Approval\\ApprovalServiceProvider"
],
"aliases": {
"Approval": "Cjmellor\\Approval\\Facades\\Approval"
"Approval": "Approval\\Approval\\Facades\\Approval"
}
}
},
Expand Down

0 comments on commit ce5ba51

Please sign in to comment.