-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.81 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.81 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "hyvor/internal",
"description": "Internal Package for HYVOR Applications",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Hyvor\\Internal\\": "src/",
"Hyvor\\Internal\\Bundle\\": "bundle/src"
}
},
"autoload-dev": {
"psr-4": {
"Hyvor\\Internal\\Tests\\": "tests",
"Hyvor\\Internal\\Types\\": "types"
}
},
"authors": [
{
"name": "Supun",
"email": "supun@hyvor.com"
}
],
"require-dev": {
"orchestra/testbench": "^9.0",
"phpstan/phpstan": "^2.1.7",
"phpunit/phpunit": "^10.5",
"symfony/dependency-injection": "^7.4 || ^8.0",
"symfony/config": "^7.4 || ^8.0",
"symfony/framework-bundle": "^7.4 || ^8.0",
"symfony/browser-kit": "^7.4 || ^8.0"
},
"extra": {
"laravel": {
"providers": [
"Hyvor\\Internal\\InternalServiceProvider"
]
}
},
"require": {
"php": ">=8.3",
"ext-intl": "*",
"ext-apcu": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^7.8",
"promphp/prometheus_client_php": "^2.14",
"illuminate/encryption": "*",
"symfony/http-client": "^7.4 || ^8.0",
"symfony/expression-language": "^7.4 || ^8.0",
"symfony/twig-bundle": "^7.4 || ^8.0",
"symfony/ux-twig-component": "^2.24",
"symfony/validator": "^7.4 || ^8.0",
"firebase/php-jwt": "^6.11",
"symfony/orm-pack": "^2.4",
"symfony/serializer-pack": "^1.3",
"symfony/scheduler": "^7.4 || ^8.0",
"symfony/messenger": "^7.4 || ^8.0",
"zenstruck/foundry": "^2.6",
"zenstruck/messenger-test": "^1.13"
}
}