-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 963 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "circle33/laravel-bus-fluentable",
"description": "Make Laravel testing batched jobs more fluent.",
"keywords" : [
"laravel",
"laravel-bus-fluentable"
],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Circle33\\LaravelBusFluentable\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"authors": [
{
"name": "circle33",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require-dev": {
"laravel/framework": "10.*|11.*",
"orchestra/testbench-core": "^8.0|^9.0",
"phpunit/phpunit": "^10.0",
"friendsofphp/php-cs-fixer": "^3.65",
"phpstan/phpstan": "^2.0"
},
"scripts": {
"test": "./vendor/bin/phpunit",
"lint": "./vendor/bin/php-cs-fixer fix",
"analyse": "./vendor/bin/phpstan analyse"
}
}