forked from transmission-php/transmission-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 841 Bytes
/
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
{
"name": "transmission-php/transmission-php",
"description": "PHP Transmission client",
"keywords": [
"transmission",
"torrent",
"download",
"rpc",
"json"
],
"type": "library",
"license": "BSD-2-Clause",
"require": {
"php": ">=7.3",
"kriswallsmith/buzz": "~1.1.0",
"symfony/property-access": "~5.0",
"nyholm/psr7": "^1.2"
},
"autoload": {
"psr-4": {
"": "lib/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.1|^9.1",
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12.25"
},
"scripts": {
"phpunit": "vendor/bin/phpunit",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix",
"phpstan": "vendor/bin/phpstan analyse lib --level 5"
}
}