-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
124 lines (124 loc) · 4.39 KB
/
composer.json
File metadata and controls
124 lines (124 loc) · 4.39 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "ghostwriter/atprotocol",
"description": "Bluesky API Client for AT Protocol",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"ghostwriter",
"atprotocol",
"atproto",
"atp",
"bluesky",
"bsky",
"lexicons"
],
"authors": [
{
"name": "Nathanael Esayeas",
"email": "nathanael.esayeas@protonmail.com",
"homepage": "https://github.com/ghostwriter",
"role": "Developer"
}
],
"homepage": "https://github.com/ghostwriter/atprotocol",
"support": {
"issues": "https://github.com/ghostwriter/atprotocol/issues",
"source": "https://github.com/ghostwriter/atprotocol",
"docs": "https://github.com/ghostwriter/atprotocol",
"rss": "https://github.com/ghostwriter/atprotocol/releases.atom",
"security": "https://github.com/ghostwriter/atprotocol/security/advisories/new"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/ghostwriter"
}
],
"_comment": ["#BlackLivesMatter", "#FreePalestine", "#StandWithIran", "#StandWithUkraine", "#StopGenocide"],
"require": {
"php": "~8.4.0 || ~8.5.0",
"ext-curl": "*",
"ext-mbstring": "*",
"ghostwriter/case-converter": "^2.2.1",
"ghostwriter/collection": "^2.1.0",
"ghostwriter/config": "^2.1.1",
"ghostwriter/container": "^6.1.1",
"ghostwriter/event-dispatcher": "^6.1.0",
"ghostwriter/http": "^0.1.1",
"ghostwriter/json": "^3.0.2",
"ghostwriter/option": "^2.0.0",
"ghostwriter/result": "^2.0.0",
"ghostwriter/uuid": "^1.0.3"
},
"require-dev": {
"ext-xdebug": "*",
"ghostwriter/coding-standard": "dev-main",
"ghostwriter/filesystem": "^0.2.0",
"mockery/mockery": "^1.6.12",
"nikic/php-parser": "^5.7.0",
"phpunit/phpunit": "^13.1.7",
"symfony/var-dumper": "^8.0.8"
},
"replace": {
"atproto/atproto": "*"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Ghostwriter\\AtProtocol\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"files": [
"tests/bootstrap.php"
],
"exclude-from-classmap": ["/tests/"]
},
"config": {
"allow-plugins": {
"ghostwriter/coding-standard": true,
"infection/extension-installer": true
},
"bump-after-update": false,
"classmap-authoritative": false,
"discard-changes": true,
"optimize-autoloader": true,
"platform": {
"php": "8.4.999"
},
"platform-check": true,
"preferred-install": "dist",
"prepend-autoloader": true,
"process-timeout": 5000,
"sort-packages": true,
"use-parent-dir": false
},
"extra": {
"ghostwriter": {
"container": {
"definition": "Ghostwriter\\AtProtocol\\Container\\AtProtocolDefinition"
}
},
"thanks": {
"name": "ghostwriter/atprotocol",
"url": "https://github.com/ghostwriter/atprotocol"
}
},
"scripts": {
"cache:clear": "rm -rf ./.cache/*",
"check": ["@cache:clear", "tools/phar/composer validate", "@test"],
"docker": ["@docker:build", "@docker:run"],
"docker:build": "docker buildx build --pull --tag workspace .",
"docker:run": "docker run -v $(PWD):/github/workspace -w=/github/workspace -e GITHUB_DEBUG=1 -e GITHUB_WORKSPACE=/github/workspace -e GITHUB_TOKEN=github-token -e SIGNING_SECRET_KEY=secret-key workspace",
"git:submodule:update": "git submodule update --depth=1 --init --recursive --recommend-shallow --remote",
"infection": ["@xdebug", "tools/phar/infection --min-covered-msi=0 --min-msi=0 --show-mutations --threads=max"],
"phpbench": "tools/phar/phpbench run --report='extends:aggregate,cols:[benchmark,subject,revs,its,mem_peak,mode,rstdev]' --time-unit=milliseconds ./tests/Benchmark",
"phpunit": ["@xdebug", "vendor/bin/phpunit --do-not-cache-result --colors=always"],
"test": ["@phpunit", "@infection"],
"unused": "tools/phar/composer-unused --no-interaction --ansi",
"xdebug": "@putenv XDEBUG_MODE=coverage"
}
}