-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
90 lines (90 loc) · 2.16 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
81
82
83
84
85
86
87
88
89
90
{
"name": "treblle/runtime-php",
"description": "The Official Treblle runtime for PHP.",
"license": "MIT",
"type": "package",
"version": "0.0.1",
"keywords": [
"api","php","sdk","backend","rest-api","logging",
"resful-api","sdk-php","api-monitoring","developer-tool",
"treblle","api-observability","observability","treblle-sdk"
],
"homepage": "https://docs.treblle.com/",
"readme": "./README.md",
"authors": [
{
"name": "Steve McDougall",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.juststeveking.uk/"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/treblle/runtime-php/issues",
"source": "https://github.com/treblle/runtime-php"
},
"require": {
"php": "^8.3",
"juststeveking/php-sdk": "^3.0",
"treblle/cloudevent-php": "dev-main",
"thecodingmachine/safe": "^2.5"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5",
"laravel/pint": "^1.15",
"phpunit/phpunit": "^11.1",
"symfony/var-dumper": "^7.0",
"php-http/mock-client": "^1.6",
"symfony/http-client": "^7.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Treblle\\Runtime\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Treblle\\Runtime\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
},
"preferred-install": {
"*": "dist"
},
"github-protocols": [
"git","ssh","https"
],
"optimize-autoloader": true,
"classmap-authoritative": true
},
"scripts": {
"pint": [
"./vendor/bin/pint"
],
"qc": [
"@pint",
"@stan",
"@test"
],
"stan": [
"./vendor/bin/phpstan analyse --memory-limit=3g"
],
"test": [
"./vendor/bin/phpunit --testdox"
]
},
"scripts-descriptions": {
"pint": "Run the Laravel Pint code style.",
"qc": "Run the Quality Control scripts.",
"stan": "Run the PhpStan static analysis.",
"test": "Run the Test Suite."
}
}