-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
41 lines (41 loc) · 892 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": "kakuilan/php-helper",
"description": "k`s php helper/library/utils",
"keywords": [
"php helper",
"php library",
"php utils"
],
"homepage": "https://github.com/kakuilan/php-helper",
"license": "Apache-2.0",
"authors": [
{
"name": "kakuilan",
"email": "[email protected]",
"homepage": "https://github.com/kakuilan"
}
],
"require": {
"php": ">=7.2",
"ext-curl": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"autoload": {
"psr-4": {
"Kph\\": "src",
"Kph\\Tests\\": "tests"
},
"files": [
"src/Concurrent/functions.php"
]
},
"scripts": {
"test": "phpunit --bootstrap=tests/bootstrap.php ./tests/",
"cover": "phpunit --bootstrap=tests/bootstrap.php --coverage-clover=coverage.xml ./tests/"
}
}