-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 1 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
{
"name": "rikudou/lemmy-api",
"description": "Communicate with Lemmy API from php",
"license": "MIT",
"require": {
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "*",
"psr/http-client-implementation": "*",
"php": "^8.2",
"ext-json": "*",
"psr/http-message": "^1.0 | ^2.0",
"ext-fileinfo": "*"
},
"require-dev": {
"symfony/http-client": "^6.3",
"php-http/discovery": "^1.19",
"nyholm/psr7": "^1.8",
"friendsofphp/php-cs-fixer": "^3.21",
"phpstan/phpstan": "^1.10",
"jetbrains/phpstorm-attributes": "^1.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"Rikudou\\LemmyApi\\": "src/"
}
},
"scripts": {
"fixer": "php-cs-fixer fix --verbose --allow-risky=yes",
"phpstan": "phpstan analyse --level=max src"
}
}