-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·43 lines (43 loc) · 1.29 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
{
"name": "userfrosting/demo-vue",
"type": "project",
"description": "Demo of a Vue.js single page app working on UserFrosting 5 and UiKit",
"keywords": ["UserFrosting", "UserFrosting 5", "UserFrosting Sprinkle", "UserFrosting Theme", "Vue.js", "UiKit"],
"homepage": "/~https://github.com/userfrosting/theme-uikit",
"license" : "MIT",
"authors" : [
{
"name": "Louis Charette",
"homepage": "https://bbqsoftwares.com"
}
],
"require": {
"php": "^8.1",
"ext-gd": "*",
"userfrosting/framework": "~5.1.0",
"userfrosting/sprinkle-core": "~5.1.0",
"userfrosting/sprinkle-account": "~5.1.0",
"userfrosting/vite-php-twig": "^1.0.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.1",
"phpstan/phpstan-mockery": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^10.5",
"fakerphp/faker": "^1.17"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"UserFrosting\\Demo\\": "app/src"
}
},
"autoload-dev": {
"psr-4": {
"UserFrosting\\Tests\\Demo\\": "app/tests/"
}
}
}