-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 2.15 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
68
{
"name": "oscabrera/model-repository",
"description": "A Laravel package that streamlines the creation of repository-based structures with a custom Artisan command.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/Oscabrera/model-repository",
"authors": [
{
"name": "Oscar Cabrera",
"email": "[email protected]",
"homepage": "https://github.com/Oscabrera"
}
],
"autoload": {
"psr-4": {
"Oscabrera\\ModelRepository\\": "src/",
"Oscabrera\\AnalyzerTool\\CIScripts\\": "ci-scripts/",
"Oscabrera\\DevTools\\": "dev-tools/"
}
},
"require": {
"php": "^8.1",
"laravel/framework": "^9.0|^10.0|^11.0",
"oscabrera/laravel-query-filters": "^1.0",
"oscabrera/laravel-json-api-format-paginate": "^1.0",
"spatie/laravel-route-attributes": "^1.21"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Oscabrera\\ModelRepository\\RepositoryCommandServiceProvider",
"Oscabrera\\ModelRepository\\BindingServiceProvider"
]
}
},
"keywords": [
"laravel",
"repositories",
"Artisan command",
"structure",
"package"
],
"require-dev": {
"phpstan/phpstan": "^1.11",
"laravel/pint": "^1.16",
"phpmd/phpmd": "^2.15",
"pestphp/pest-plugin-drift": "^3.0",
"pestphp/pest": "^3.0",
"mockery/mockery": "^1.6"
},
"scripts": {
"phpstan": "php ci-scripts/PhpStan/run.php",
"pint": "php ci-scripts/Pint/run.php",
"phpmd": "php ci-scripts/PhpMD/run.php",
"pest": "./vendor/bin/pest",
"pest-feature": "./vendor/bin/pest tests/Feature",
"pest-unit": "./vendor/bin/pest tests/Unit",
"pest-xml": "./vendor/bin/pest --coverage --coverage-clover=coverage.xml"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true
}
}
}