-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
42 lines (42 loc) · 1.35 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
{
"name": "lcharette/uf_formgenerator",
"type": "userfrosting-sprinkle",
"description": "Form generator for UserFrosting V5",
"keywords": ["Form", "generator", "userfrosting"],
"homepage": "https://github.com/lcharette/UF_FormGenerator",
"license" : "MIT",
"authors" : [
{
"name": "Louis Charette",
"homepage": "https://bbqsoftwares.com"
}
],
"require": {
"php": "^8.0",
"userfrosting/framework": "~5.1.0",
"userfrosting/sprinkle-core": "~5.1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^10.5",
"fakerphp/faker": "^1.17",
"slam/phpstan-extensions": "^6.0",
"userfrosting/theme-adminlte": "^5.0"
},
"autoload": {
"psr-4": {
"UserFrosting\\Sprinkle\\FormGenerator\\": "app/src/"
}
},
"autoload-dev": {
"psr-4": {
"UserFrosting\\Sprinkle\\FormGenerator\\Tests\\": "app/tests/",
"UserFrosting\\Sprinkle\\FormGeneratorExample\\": "public/src/",
"UserFrosting\\Sprinkle\\FormGeneratorExample\\Tests\\": "public/tests/"
}
}
}