-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.72 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
46
47
48
49
50
51
52
53
{
"name": "userfrosting/sprinkle-admin",
"type": "userfrosting-sprinkle",
"description": "Administrative management module for UserFrosting.",
"keywords": ["php user management", "userfrosting", "sprinkle", "userfrosting-sprinkle", "admin-dashboard", "admin-panel", "php", "user-management"],
"homepage": "https://github.com/userfrosting/UserFrosting",
"license" : "MIT",
"authors" : [
{
"name": "Alexander Weissman",
"homepage": "https://alexanderweissman.com"
},
{
"name": "Louis Charette",
"homepage": "https://bbqsoftwares.com"
},
{
"name": "Jordan Mele",
"email": "[email protected]",
"homepage": "https://djmm.me"
}
],
"require": {
"php": "^8.1",
"userfrosting/framework": "~5.1.0",
"userfrosting/sprinkle-core": "~5.1.0",
"userfrosting/sprinkle-account": "~5.1.0",
"userfrosting/theme-adminlte": "~5.1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-mockery": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^10.5",
"mockery/mockery": "^1.2",
"fakerphp/faker": "^1.17",
"slam/phpstan-extensions": "^6.0",
"php-mock/php-mock-mockery": "^1.3"
},
"autoload": {
"psr-4": {
"UserFrosting\\Sprinkle\\Admin\\": "app/src/"
}
},
"autoload-dev": {
"psr-4": {
"UserFrosting\\Sprinkle\\Admin\\Tests\\": "app/tests/"
}
}
}