-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.28 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
{
"name": "ngabor84/laravel-dbconnstring-parser",
"description": "Small service to parse database connection string into parts",
"keywords": ["laravel", "lumen", "database", "connection", "string", "parser"],
"homepage": "https://github.com/ngabor84/laravel-dbconnstring-parser",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Gabor Nemeth",
"email": "negabor@gmail.com"
}
],
"require": {
"php": "^8.0",
"illuminate/support": "^v10.13"
},
"require-dev": {
"laravel/framework": "^v10.13",
"laravel/lumen-framework": "^10.0",
"phpunit/phpunit": "^10.2",
"orchestra/testbench": "^v8.5",
"nunomaduro/larastan": "^2.6",
"phpstan/phpstan-phpunit": "^1.3"
},
"autoload": {
"psr-4": {
"Service\\Database\\ConnectionStringParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Service\\Database\\ConnectionStringParser\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Service\\Database\\ConnectionStringParser\\Providers\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}