Skip to content

Commit 954c2ea

Browse files
author
Liran Cohen
committed
Update composer.json
1 parent 95605b8 commit 954c2ea

File tree

1 file changed

+56
-45
lines changed

1 file changed

+56
-45
lines changed

composer.json

Lines changed: 56 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,58 @@
11
{
2-
"name": "givebutter/laravel-custom-fields",
3-
"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.",
4-
"type": "library",
5-
"require": {
6-
"laravel/framework": "^6.0|^7.0|^8.0"
7-
},
8-
"require-dev": {
9-
"orchestra/testbench": "^6.0",
10-
"friendsofphp/php-cs-fixer": "^2.16"
11-
},
12-
"autoload": {
13-
"psr-4": {
14-
"Givebutter\\LaravelCustomFields\\": "src/"
15-
}
16-
},
17-
"autoload-dev": {
18-
"psr-4": {
19-
"Givebutter\\Tests\\": "tests/"
20-
}
21-
},
22-
"license": "MIT",
23-
"authors": [
24-
{
25-
"name": "Daniel Coulbourne",
26-
"email": "daniel@tighten.co"
27-
}
28-
],
29-
"scripts": {
30-
"test": [
31-
"vendor/bin/phpunit"
32-
],
33-
"lint": [
34-
"vendor/bin/php-cs-fixer fix --config=.php_cs.dist -v --dry-run --stop-on-violation --using-cache=no"
35-
],
36-
"lint-fix": [
37-
"vendor/bin/php-cs-fixer fix --config=.php_cs.dist -v --using-cache=no"
38-
]
39-
},
40-
"extra": {
41-
"laravel": {
42-
"providers": [
43-
"Givebutter\\LaravelCustomFields\\LaravelCustomFieldsServiceProvider"
44-
]
45-
}
46-
}
2+
"name": "givebutter/laravel-custom-fields",
3+
"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.",
4+
"keywords": [
5+
"custom fields",
6+
"laravel"
7+
],
8+
"homepage": "https://github.com/givebutter/laravel-custom-fields",
9+
"license": "MIT",
10+
"type": "library",
11+
"authors": [
12+
{
13+
"name": "Daniel Coulbourne",
14+
"email": "daniel@tighten.co"
15+
},
16+
{
17+
"name": "Liran Cohen",
18+
"email": "liran@givebutter.com"
19+
}
20+
],
21+
"require": {
22+
"php": "^7.4|^8.0",
23+
"illuminate/support": "^8.0"
24+
},
25+
"require-dev": {
26+
"orchestra/testbench": "^6.0",
27+
"phpunit/phpunit": "^9.0",
28+
"friendsofphp/php-cs-fixer": "^2.16"
29+
},
30+
"autoload": {
31+
"psr-4": {
32+
"Givebutter\\LaravelCustomFields\\": "src/"
33+
}
34+
},
35+
"autoload-dev": {
36+
"psr-4": {
37+
"Givebutter\\Tests\\": "tests/"
38+
}
39+
},
40+
"scripts": {
41+
"test": [
42+
"vendor/bin/phpunit"
43+
],
44+
"lint": [
45+
"vendor/bin/php-cs-fixer fix --config=.php_cs.dist -v --dry-run --stop-on-violation --using-cache=no"
46+
],
47+
"lint-fix": [
48+
"vendor/bin/php-cs-fixer fix --config=.php_cs.dist -v --using-cache=no"
49+
]
50+
},
51+
"extra": {
52+
"laravel": {
53+
"providers": [
54+
"Givebutter\\LaravelCustomFields\\LaravelCustomFieldsServiceProvider"
55+
]
56+
}
57+
}
4758
}

0 commit comments

Comments
 (0)