-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·51 lines (51 loc) · 1.39 KB
/
composer.json
File metadata and controls
executable file
·51 lines (51 loc) · 1.39 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
{
"name": "userfrosting/learn",
"type": "project",
"description": "The documentation website for UserFrosting.",
"keywords": [
"userfrosting",
"documentation"
],
"homepage": "https://github.com/userfrosting/UserFrosting",
"license": "MIT",
"authors": [
{
"name": "Louis Charette",
"homepage": "https://bbqsoftwares.com"
}
],
"require": {
"php": "^8.3",
"ext-gd": "*",
"userfrosting/framework": "^6.0",
"userfrosting/sprinkle-core": "^6.0",
"pomodocs/commonmark-alert": "^0.6.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",
"league/factory-muffin": "^3.0",
"league/factory-muffin-faker": "^2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"UserFrosting\\Learn\\": "app/src"
}
},
"autoload-dev": {
"psr-4": {
"UserFrosting\\Tests\\Learn\\": "app/tests/"
}
},
"scripts": {
"post-create-project-cmd": "php bakery bake"
}
}