-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
executable file
·67 lines (67 loc) · 1.73 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
{
"name": "glhd/aire",
"description": "Modern Laravel form builder. Remembers old input, retrieves error messages and comes with beautiful Tailwind-based markup out of the box.",
"keywords": [
"laravel",
"forms",
"tailwind",
"aire"
],
"authors": [
{
"name": "Chris Morrell",
"homepage": "http://www.cmorrell.com"
}
],
"type": "library",
"license": "MIT",
"require": {
"illuminate/support": ">=5.8.28 <10.48.0 || >10.48.1 <12.0.0",
"illuminate/view": ">=5.8.28 <10.48.0 || >10.48.1 <12.0.0",
"illuminate/events": ">=5.8.28 <10.48.0 || >10.48.1 <12.0.0",
"ext-json": "*"
},
"require-dev": {
"orchestra/testbench": "^6.24|^7.10|^8|^9|9.x-dev|10.x-dev|dev-master",
"phpunit/phpunit": "^9|^10.5",
"php-coveralls/php-coveralls": "^2.1",
"guzzlehttp/guzzle": "~6.0|~7.0",
"symfony/css-selector": "^5.4",
"symfony/dom-crawler": "^5.4",
"barryvdh/reflection-docblock": "^2.0",
"mockery/mockery": "^1.4",
"friendsofphp/php-cs-fixer": "^3.5"
},
"suggest": {
"glhd/aire-tailwind-custom-forms": "Use the Tailwind custom forms plugin for even nicer looking forms"
},
"autoload": {
"psr-4": {
"Galahad\\Aire\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Galahad\\Aire\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"fix-style": "vendor/bin/php-cs-fixer fix",
"check-style": "vendor/bin/php-cs-fixer fix --diff --dry-run"
},
"extra": {
"laravel": {
"providers": [
"Galahad\\Aire\\Support\\AireServiceProvider"
],
"aliases": {
"Aire": "Galahad\\Aire\\Support\\Facades\\Aire"
}
}
}
}