-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.15 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
{
"name": "cable8mm/water-melon",
"description": "Water Melon is simple melon.com api sdk for php",
"keywords": [
"phpunit",
"php",
"development",
"crawler",
"melon"
],
"type": "project",
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.5"
},
"require-dev": {
"phpunit/phpunit": "^9.0|^10.0|^11.0",
"laravel/pint": "^1.0"
},
"license": "MIT",
"authors": [
{
"name": "Sam Lee",
"email": "cable8mm@gmail.com",
"role": "Developer"
}
],
"autoload": {
"classmap": [
"src/"
],
"psr-4": {
"Cable8mm\\WaterMelon\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cable8mm\\WaterMelon\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "./vendor/bin/phpunit tests",
"lint": "./vendor/bin/pint",
"inspect": "./vendor/bin/pint --test",
"apidoc": "doctum.phar update doctum.php --output-format=github --no-ansi --no-progress"
}
}