forked from svennis94/Laravel-SQL-Server-Grammar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "sebudesign/laravel-sql-server-grammar",
"description": "An optimized SQL Server Grammar for Laravel & Lumen",
"keywords": ["sqlsrv", "laravel", "lumen", "custom", "sqlserver", "sql"],
"license": "MIT",
"authors": [
{
"name": "Sven Buijsrogge",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/SeBuDesign/Laravel-SQL-Server-Grammar/issues",
"source": "https://github.com/SeBuDesign/Laravel-SQL-Server-Grammar"
},
"require": {
"php": ">=5.5.9",
"illuminate/database": ">=4.1",
"illuminate/support": ">=4.1"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9",
"laravel/framework": ">=4.1"
},
"autoload": {
"psr-4": {
"SeBuDesign\\SqlServerGrammar\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SeBuDesign\\SqlServerGrammar\\Tests\\": "tests/"
}
},
"minimum-stability": "stable"
}