-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.55 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "freshphp/gemini",
"description": "a package is an encapsulation of the gemini rest api",
"type": "library",
"require": {
"php": "^8.1",
"google/auth": "^1.41",
"guzzlehttp/guzzle": "^7.2",
"colinodell/json5": "^3.0"
},
"require-dev": {
"laravel/pint": "^1.17",
"mockery/mockery": "^1.6.12",
"pestphp/pest": "^2.34.7",
"pestphp/pest-plugin-arch": "^2.7",
"pestphp/pest-plugin-type-coverage": "^2.8.2",
"phpstan/phpstan": "^1.11.2",
"rector/rector": "^1.1.0",
"symfony/var-dumper": "^6.4.7"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Fresh\\Gemini\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "yjzhang",
"email": "fresh7849@gmail.com"
}
],
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"lint": "pint -v",
"refactor": "rector --debug",
"test:lint": "pint --test -v",
"test:refactor": "rector --dry-run",
"test:types": "phpstan analyse --ansi",
"test:type-coverage": "pest --type-coverage --min=100",
"test:unit": "pest --colors=always",
"test": [
"@test:lint",
"@test:refactor",
"@test:types",
"@test:type-coverage",
"@test:unit"
]
}
}