-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
80 lines (80 loc) · 2.32 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "joeymckenzie/openbrewerydb-php-client",
"description": "An Open Brewery DB API client for PHP.",
"type": "library",
"license": "MIT",
"version": "0.9.0",
"homepage": "https://github.com/joeymckenzie/openbrewerydb-php-client",
"autoload": {
"psr-4": {
"OpenBreweryDb\\": "src/"
},
"files": [
"src/OpenBreweryDb.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Joey McKenzie",
"email": "[email protected]",
"homepage": "https://github.com/joeymckenzie"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.3",
"php-http/discovery": "^1.19.2",
"php-http/multipart-stream-builder": "^1.3.0",
"psr/http-client": "^1.0.3",
"psr/http-client-implementation": "*",
"psr/http-factory-implementation": "*",
"psr/http-message": "^2.0.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.8",
"laravel/pint": "^1.13",
"pestphp/pest": "^2.32",
"pestphp/pest-plugin-type-coverage": "^2.8",
"pestphp/pest-plugin-watch": "^2.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5",
"rector/rector": "^1.0",
"symfony/http-client": "^7.0"
},
"scripts": {
"test:integration": "./vendor/bin/pest --parallel --colors=always",
"test:watch": "./vendor/bin/pest --watch --parallel",
"test:types": "./vendor/bin/pest --type-coverage --min=100",
"test": [
"@test:types",
"@test:integration"
],
"lint": "./vendor/bin/phpstan analyze",
"fmt": "./vendor/bin/pint -v",
"check": "./vendor/bin/pint --test",
"prepare": "git config core.hookspath .githooks",
"ci": [
"@check",
"@rector:dry",
"@lint",
"@test"
],
"rector": "vendor/bin/rector process",
"rector:dry": "vendor/bin/rector process --dry-run",
"refactor": [
"@rector",
"@fmt"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
}
}