-
-
Notifications
You must be signed in to change notification settings - Fork 363
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·67 lines (67 loc) · 1.85 KB
/
Copy pathcomposer.json
File metadata and controls
executable file
·67 lines (67 loc) · 1.85 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "userfrosting/userfrosting",
"type": "project",
"description": "A secure, modern user management system for PHP.",
"keywords": [
"php user management",
"userfrosting",
"php",
"login",
"web-framework",
"user-management",
"login-system",
"login"
],
"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": "SiliconSoldier@outlook.com.au",
"homepage": "https://djmm.me"
}
],
"require": {
"php": "^8.1",
"ext-gd": "*",
"userfrosting/framework": "^6.0.1",
"userfrosting/sprinkle-core": "^6.0.1",
"userfrosting/sprinkle-account": "^6.0.1",
"userfrosting/sprinkle-admin": "^6.0.1"
},
"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",
"league/factory-muffin": "^3.0",
"league/factory-muffin-faker": "^2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"UserFrosting\\App\\": "app/src"
}
},
"autoload-dev": {
"psr-4": {
"UserFrosting\\Tests\\App\\": "app/tests/"
}
},
"scripts": {
"post-create-project-cmd": "php bakery bake"
}
}