-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 1.19 KB
/
Copy pathcomposer.json
File metadata and controls
31 lines (31 loc) · 1.19 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
{
"name": "whilesmart/eloquent-admin",
"description": "Shared measurements, user directory and automatic email templates for Laravel applications.",
"type": "library",
"version": "0.2.1",
"license": "MIT",
"authors": [{ "name": "Whilesmart Team" }],
"require": {
"php": "^8.2",
"laravel/framework": "^11.0|^12.0",
"whilesmart/eloquent-engagement": "^1.0",
"whilesmart/eloquent-owner-access": "^1.0",
"whilesmart/laravel-user-authentication": "^1.0"
},
"require-dev": {
"orchestra/testbench": "^9.0|^10.0",
"laravel/pint": "^1.22",
"fakerphp/faker": "^1.24"
},
"config": { "platform": { "php": "8.2" } },
"autoload": { "psr-4": { "Whilesmart\\Admin\\": "src/", "Whilesmart\\Admin\\Database\\Factories\\": "database/factories/" } },
"autoload-dev": { "psr-4": { "Tests\\": "tests/" } },
"extra": { "laravel": { "providers": ["Whilesmart\\Admin\\AdminServiceProvider"] } },
"scripts": {
"test": "vendor/bin/testbench package:test",
"pint": ["./vendor/bin/pint"],
"pint:test": ["./vendor/bin/pint --test"]
},
"minimum-stability": "dev",
"prefer-stable": true
}