-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 815 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 815 Bytes
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
{
"name": "aranyasen/laravel-adminer",
"description": "Adminer (by Jakub Vrana) wrapper for Laravel 9+",
"keywords": ["adminer", "laravel5", "database", "management", "explorer"],
"license": "MIT",
"authors": [
{
"name": "Aranya Sen",
"email": "sen.aranya@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"illuminate/support": ">=v9",
"illuminate/routing": ">=v9"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^10.3.5",
"orchestra/testbench": "^v8.12.1"
},
"autoload": {
"psr-4": {
"Aranyasen\\LaravelAdminer\\": "src/",
"Tests\\": "tests/"
}
}
}