-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.12 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
{
"name": "kero/typesafe-env",
"description": "Wrapper around Laravel's Env to support type safety.",
"license": "MIT",
"type": "library",
"version": "0.1.2",
"authors": [
{
"name": "Martin Rehberger",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/kingkero/typesafe-env/issues",
"source": "https://github.com/kingkero/typesafe-env"
},
"require": {
"php": "^8.1",
"illuminate/support": "^10.0 || ^11.0",
"phpoption/phpoption": "^1.9",
"vlucas/phpdotenv": "^5.5"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.39",
"laravel/pint": "^0.1.2 || ^1.0.0",
"pestphp/pest": "^2.24",
"pestphp/pest-plugin-type-coverage": "^2.4",
"phpstan/phpstan": "^1.10"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Kero\\TypeSafeEnv\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true
}
}
}