-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 1.04 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
{
"name": "stats4sd/laravel-sql-views",
"description": "A small package to help automate the creation and updating of MySQL views within a Laravel project.",
"license": "MIT",
"authors": [
{
"name": "Stats4SD",
"email": "[email protected]",
"homepage": "https://stats4sd.org"
}
],
"homepage": "https://github.com/stats4sd/laravel-sql-views",
"keywords": ["Laravel", "Sql"],
"require-dev": {
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1.1",
"orchestra/testbench": "~3|~4",
"sempro/phpunit-pretty-print": "^1.0"
},
"autoload": {
"psr-4": {
"Stats4SD\\SqlViews\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Stats4SD\\SqlViews\\SqlViewsServiceProvider"
],
"aliases": {
"SqlViews": "Stats4SD\\SqlViews\\Facades\\SqlViews"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}