-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
51 lines (51 loc) · 1.2 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
{
"name": "shahmal1yev/blueskysdk",
"description": "BlueSky SDK is a comprehensive PHP library designed to seamlessly integrate with the BlueSky social network.",
"keywords": [
"bluesky",
"sdk",
"api",
"social-network",
"atproto",
"decentralized",
"php",
"client",
"library",
"wrapper",
"federation",
"microblogs",
"web3"
],
"minimum-stability": "stable",
"license": "mit",
"autoload": {
"psr-4": {
"Atproto\\": "src/",
"Tests\\": "tests/"
},
"files": [
"src/helpers.php"
]
},
"require-dev": {
"phpunit/phpunit": "9.6.20",
"fakerphp/faker": "^1.23",
"phpstan/phpstan": "^1.12",
"ext-posix": "*"
},
"require": {
"ext-json": "*",
"ext-curl": "*",
"ext-fileinfo": "*",
"php": ">=7.4",
"nesbot/carbon": "2.x",
"shahmal1yev/gcollection": "^1.0",
"illuminate/collections": "~v8.83"
},
"scripts": {
"test": "vendor/bin/phpunit tests -c ./phpunit.xml",
"test-unit": "vendor/bin/phpunit tests/Unit -c ./phpunit.xml",
"test-feature": "vendor/bin/phpunit tests/Feature -c ./phpunit.xml",
"analyse": "vendor/bin/phpstan analyse ./src ./tests --error-format=github"
}
}