-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.46 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
{
"name": "arafatkn/laravel-meta",
"description": "Save meta with any model.",
"type": "package",
"version": "1.0.0",
"license": "MIT",
"authors": [
{
"name": "Arafat Islam",
"email": "[email protected]"
}
],
"homepage": "https://github.com/arafatkn/laravel-meta",
"keywords": [ "model meta", "laravel meta", "meta package" ],
"require": {
"php": "^7.3|^8",
"illuminate/support": "^7|^8|^9|^10",
"illuminate/database": "^7|^8|^9|^10"
},
"autoload": {
"psr-4": {
"Arafatkn\\LaravelMeta\\": "src/",
"Arafatkn\\LaravelMeta\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Arafatkn\\LaravelMeta\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Arafatkn\\LaravelMeta\\MetaServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"orchestra/testbench": "^7.5",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-f": "vendor/bin/phpunit --filter",
"test-coverage": "vendor/bin/phpunit --coverage",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
}
}