-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.28 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
{
"name": "thepublicgood/names",
"description": "API client for domains.co.za resellers.",
"license": "MIT",
"authors": [
{
"name": "Warrick Bayman",
"email": "me@warrickbayman.com",
"role": "Developer",
"homepage": "https://warrickbayman.com"
}
],
"require": {
"php": "^8.2",
"psr/http-client-implementation": "^1.0",
"psr/http-message": "^1.0",
"php-http/message-factory": "^1.0",
"illuminate/support": "^9.51",
"nesbot/carbon": "^2.66",
"php-http/discovery": "^1.15"
},
"require-dev": {
"php-http/mock-client": "^1.0",
"pestphp/pest": "^1.22",
"symfony/var-dumper": "^6.2",
"pestphp/pest-plugin-mock": "^1.0",
"guzzlehttp/guzzle": "^7.5",
"php-http/guzzle7-adapter": "^1.0",
"ramsey/uuid": "^4.7",
"laravel/pint": "^1.4"
},
"autoload": {
"psr-4": {
"TPG\\Names\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TPG\\Names\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"php-http/discovery": true,
"pestphp/pest-plugin": true
}
}
}