-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (48 loc) · 1.24 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
{
"name": "typicms/form",
"description": "A basic framework agnostic form building package with a few extra niceties like remembering old input and retrieving error messages.",
"authors": [
{
"name": "Adam Wathan",
"email": "[email protected]"
},
{
"name": "Samuel De Backer",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": "^8.0.2"
},
"require-dev": {
"illuminate/support": ">=9.0",
"phpunit/phpunit": "^9.5.10",
"mockery/mockery": "^1.4.4",
"php-coveralls/php-coveralls": "~2.5.2",
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^7.4",
"phpunit/php-code-coverage": "^9.2"
},
"autoload": {
"psr-4": {
"TypiCMS\\Form\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TypiCMS\\Form\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"TypiCMS\\Form\\FormServiceProvider"
],
"aliases": {
"Form": "TypiCMS\\Form\\Facades\\Form"
}
}
}
}