-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
71 lines (71 loc) · 2.12 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "userfrosting/sprinkle-core",
"type": "userfrosting-sprinkle",
"description": "Core module for UserFrosting.",
"keywords": ["php user management", "UserFrosting", "Sprinkle"],
"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"
},
{
"name": "Mike Jacobs"
},
{
"name": "Srinivas Nukala"
}
],
"require": {
"php": "^8.1",
"composer/semver": "^3.2.4",
"doctrine/dbal": "^3.5",
"filp/whoops": "^2.14",
"illuminate/cache": "^10.0",
"illuminate/database": "^10.0",
"illuminate/events": "^10.0",
"illuminate/filesystem": "^10.0",
"league/csv": "^9.2.1",
"league/flysystem": "^3.22",
"lcharette/webpack-encore-twig": "^1.1",
"monolog/monolog": "^3.5",
"phpmailer/phpmailer": "^6.0.7",
"slim/csrf": "^1.3",
"slim/twig-view": "^3.0",
"vlucas/phpdotenv": "^5.3",
"userfrosting/framework": "~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\\Core\\": "app/src/"
}
},
"autoload-dev": {
"psr-4": {
"UserFrosting\\Sprinkle\\Core\\Tests\\": "app/tests/"
}
}
}