-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.36 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.36 KB
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": "happydemon/saloon-utils",
"description": "Utilities for building Saloon SDKs",
"license": "MIT",
"authors": [
{
"name": "Maxim Kerstens",
"email": "maxim.kerstens@gmail.com",
"homepage": "https://github.com/happyDemon"
}
],
"homepage": "https://github.com/happydemon/saloon-utils",
"keywords": ["Laravel", "Saloon", "SaloonUtils", "Saloon log", "request logger"],
"require": {
"php": "~8.2|~8.3|~8.4",
"illuminate/contracts": "~11.0|~12.0",
"saloonphp/saloon": "^3.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "~10.0|~11.0|~12.0",
"orchestra/testbench": "~9|~10",
"laravel/pint": "^1.24"
},
"autoload": {
"psr-4": {
"HappyDemon\\SaloonUtils\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HappyDemon\\SaloonUtils\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"HappyDemon\\SaloonUtils\\SaloonUtilsServiceProvider"
],
"aliases": {
"SaloonUtils": "HappyDemon\\SaloonUtils\\Facades\\SaloonUtils"
}
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"pint": "vendor/bin/pint"
}
}