-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
60 lines (60 loc) · 1.24 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
{
"name": "mediamonks/mssql-bundle",
"type": "symfony-bundle",
"description": "Symfony Bundle for working with Microsoft SQL Server on *nix (dblib) and Windows (sqlsrv) with UTF-8 and transactions support",
"keywords": [
"mssql",
"dblib",
"sqlsrv",
"symfony",
"bundle",
"freetds",
"pdo_dblib",
"pdo_sqlsrv",
"sqlserver",
"utf8",
"utf-8",
"unicode"
],
"homepage": "https://www.mediamonks.com/",
"license": "MIT",
"authors": [
{
"name": "Robert Slootjes",
"email": "robert@mediamonks.com",
"homepage": "https://github.com/slootjes"
},
{
"name": "Arjen Warendorff",
"email": "arjen@mediamonks.com"
},
{
"name": "Michal Kristin",
"email": "michal@mediamonks.com"
},
{
"name": "Realestate.co.nz",
"homepage": "http://www.realestate.co.nz"
},
{
"name": "Ken Golovin",
"homepage": "https://github.com/pasinter"
}
],
"require": {
"php": "^5.4|~7.0"
},
"suggest": {
"symfony/framework-bundle": "For when using this in Symfony"
},
"autoload": {
"psr-4": {
"MediaMonks\\MssqlBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}