-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.04 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"authors": [
{
"name": "Robert Landers",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Bottledcode\\DurablePhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bottledcode\\DurablePhp\\Tests\\": "tests/"
}
},
"bin": [
"bin/dphp"
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"license": "MIT",
"name": "bottledcode/durable-php",
"require": {
"adhocore/cli": "^1.7.1",
"amphp/file": "^3.1.1",
"amphp/http-client": "^5.1.0",
"amphp/log": "^v2.0.0",
"amphp/parallel": "^2.2.9",
"crell/serde": "^1.2.0",
"nesbot/carbon": ">2.0",
"php": ">=8.3",
"php-di/php-di": "^7.0.7",
"ramsey/uuid": "^4.7.6",
"webonyx/graphql-php": "^15.12.5",
"withinboredom/time": "^5.0.0",
"nikic/php-parser": "^5.1"
},
"require-dev": {
"laravel/pint": "^1.17.2",
"mockery/mockery": "^1.6.12",
"pestphp/pest": "^2.35.1 || ^3.0.0"
},
"scripts": {
"test": "pest"
},
"type": "library"
}