-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
62 lines (62 loc) · 1.72 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
{
"name": "socialweb/atproto-lexicon",
"description": "A PHP-based Lexicon parser for applications using the AT Protocol",
"license": "LGPL-3.0-or-later",
"type": "library",
"keywords": [
"lexicon",
"atp",
"atprotocol",
"bluesky",
"at-protocol"
],
"support": {
"issues": "https://github.com/socialweb-php/atproto-lexicon/issues",
"forum": "https://github.com/socialweb-php/atproto-lexicon/discussions",
"security": "https://github.com/socialweb-php/atproto-lexicon/security/policy"
},
"require": {
"php": "^8.2",
"ext-intl": "*"
},
"require-dev": {
"ramsey/devtools": "^2.0",
"symfony/finder": "^6.2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"SocialWeb\\Atproto\\Lexicon\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SocialWeb\\Test\\Atproto\\Lexicon\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"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"
}
}
}