-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
70 lines (70 loc) · 1.88 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "socialweb/atproto",
"description": "A PHP library for integrating with and communicating over the AT Protocol",
"license": "LGPL-3.0-or-later",
"type": "library",
"keywords": [
"atp",
"atproto",
"at protocol",
"bluesky"
],
"authors": [
{
"name": "Ben Ramsey",
"email": "ben@benramsey.com",
"homepage": "https://benramsey.com"
}
],
"require": {
"php": "^8.2",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "*",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "*",
"psr/http-message": "^1.1",
"psr/http-message-implementation": "*"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.5",
"ramsey/devtools": "^2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "lexicons/App/",
"Com\\": "lexicons/Com/",
"SocialWeb\\Atproto\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SocialWeb\\Test\\Atproto\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": false,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ramsey/composer-repl": true,
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true,
"captainhook/plugin-composer": true,
"ramsey/devtools": true
},
"sort-packages": true
},
"extra": {
"captainhook": {
"force-install": true
},
"ramsey/conventional-commits": {
"configFile": "conventional-commits.json"
},
"ramsey/devtools": {
"command-prefix": "dev",
"memory-limit": "-1"
}
}
}