-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.14 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.14 KB
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
53
54
{
"authors": [
{
"name": "Robert Landers",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Bottledcode\\DurablePhp\\": "src/"
},
"files": [
"src/functions.php",
"src/Contexts/AuthContext/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Bottledcode\\DurablePhp\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"license": "MIT",
"name": "bottledcode/durable-php",
"require": {
"adhocore/cli": "^1.9.4",
"amphp/file": "^3.2.0",
"amphp/http-client": "^5.3.3",
"amphp/log": "^v2.0.0",
"amphp/parallel": "^2.3.1",
"crell/serde": "^1.5.0",
"nesbot/carbon": ">2.0",
"nikic/php-parser": "^5.6",
"php": ">=8.4",
"php-di/php-di": "^7.0.11",
"ramsey/uuid": "^4.9.0",
"webonyx/graphql-php": "^15.22.0",
"withinboredom/records": "^0.1.3",
"withinboredom/time": "^6.0.0"
},
"require-dev": {
"laravel/pint": "^1.24.0",
"mockery/mockery": "^1.6.12",
"pestphp/pest": "^2.35.1 || ^3.8.2"
},
"scripts": {
"test": "pest"
},
"type": "library"
}