-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
82 lines (82 loc) · 2.17 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
72
73
74
75
76
77
78
79
80
81
82
{
"name": "laraflow/form",
"type": "library",
"description": "Laravel form builder library based bootstrap form components",
"support": {
"issues": "https://github.com/laraflow/form/issues",
"wiki": "https://github.com/laraflow/form/wiki",
"source": "https://github.com/laraflow/form",
"docs": "https://laraflow.github.io/form"
},
"keywords": [
"framework",
"laravel",
"form",
"bootstrap",
"components",
"php-form"
],
"license": "MIT",
"authors": [
{
"name": "Hafijul Islam",
"email": "hafijul233@gmail.com",
"homepage": "https://www.hafijulislam.me",
"role": "Maintainer"
}
],
"require": {
"php": "^7.2|^8.1",
"illuminate/http": "*",
"illuminate/routing": "*",
"illuminate/session": "*",
"illuminate/support": "*",
"illuminate/view": "*"
},
"require-dev": {
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^4.0|^5.0|^6.0",
"nunomaduro/larastan": "^1.0",
"orchestra/testbench": "^5.0|^6.0|^7.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^8.0|^9.0|^10.0"
},
"autoload": {
"psr-4": {
"Laraflow\\Form\\": "./src"
},
"files": [
"./src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Laraflow\\Form\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test" : "vendor/bin/phpunit"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Laraflow\\Form\\FormServiceProvider"
],
"aliases": {
"Form": "Laraflow\\Form\\Facades\\Form"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}