-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
41 lines (41 loc) · 939 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
35
36
37
38
39
40
41
{
"name": "php127/douyin",
"description": "php视频去水印 抖音去水印 快手去水印",
"keywords": [
"抖音去水印",
"视频去水印",
"快手去水印"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "读心印",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2|^8.0",
"guzzlehttp/guzzle": "^6|^7.2",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Php127\\Douyin\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Php127\\Tests\\": "./tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"friendsofphp/php-cs-fixer": "^2.18"
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always --testdox",
"check-style": "php-cs-fixer fix --using-cache=no --diff --config=.php_cs --dry-run --ansi",
"fix-style": "php-cs-fixer fix --using-cache=no --config=.php_cs --ansi"
}
}