-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
57 lines (57 loc) · 1.37 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
{
"name": "treblle/treblle-sdk-core",
"description": "The core PHP SDK classes used by the Treblle SDKs.",
"type": "library",
"license": "MIT",
"authors": [
{
"role": "Developer",
"name": "Steve McDougall",
"email": "juststevemcd@gmail.com",
"homepage": "https://www.juststeveking.uk/"
}
],
"autoload": {
"psr-4": {
"Treblle\\Core\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Treblle\\Core\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"ramsey/uuid": "^4.7",
"thecodingmachine/safe": "^2.4"
},
"require-dev": {
"laravel/pint": "^1.7",
"pestphp/pest": "^v2.8.2",
"phpstan/phpstan": "^1.10.25",
"psr/http-message": "^1.0 | ^2.0",
"psr/http-server-middleware": "^1.0",
"symfony/http-kernel": "^6.2"
},
"scripts": {
"pint": [
"./vendor/bin/pint"
],
"stan": [
"./vendor/bin/phpstan analyse"
],
"test": [
"./vendor/bin/pest"
]
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}