-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathcomposer.json
59 lines (59 loc) · 1.63 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
{
"name": "givebutter/laravel-custom-fields",
"description": "Laravel Custom Fields is a package that allows you to add custom fields to any Laravel model and store responses to those fields on any Laravel model.",
"keywords": [
"custom fields",
"laravel"
],
"homepage": "https://github.com/givebutter/laravel-custom-fields",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Daniel Coulbourne",
"email": "[email protected]"
},
{
"name": "Liran Cohen",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^9.0|^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench": "^7.6|^8.0|^9.0",
"phpunit/phpunit": "^9.0|^10.5",
"friendsofphp/php-cs-fixer": "^3.6"
},
"autoload": {
"psr-4": {
"Givebutter\\LaravelCustomFields\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Givebutter\\Tests\\": "tests/",
"Database\\": "database/"
}
},
"scripts": {
"test": [
"vendor/bin/phpunit"
],
"lint": [
"vendor/bin/php-cs-fixer fix --config=.php_cs.dist -v --dry-run --stop-on-violation --using-cache=no"
],
"lint-fix": [
"vendor/bin/php-cs-fixer fix --config=.php_cs.dist -v --using-cache=no"
]
},
"extra": {
"laravel": {
"providers": [
"Givebutter\\LaravelCustomFields\\LaravelCustomFieldsServiceProvider"
]
}
}
}