-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json.compy
50 lines (50 loc) · 1.3 KB
/
composer.json.compy
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
{
"name": "miladev/lara-meta",
"description": "Save meta with any model.",
"version": "1.0",
"license": "MIT",
"authors": [
{
"name": "Miladev",
"email": "[email protected]"
}
],
"homepage": "https://github.com/miladev95/lara-meta",
"keywords": [ "miladev", "laravel meta", "meta package" ],
"require": {
"php": ">=5.4.0"
},
"autoload": {
"psr-4": {
"Miladev\\LaravelMeta\\": "src/",
"Miladev\\LaravelMeta\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Miladev\\LaravelMeta\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Miladev\\LaravelMeta\\MetaServiceProvider"
]
}
},
"minimum-stability": "stable",
"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"
}
}