-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 966 Bytes
/
composer.json
File metadata and controls
49 lines (49 loc) · 966 Bytes
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
{
"name": "codemasher/wildstar-database",
"description": "",
"license": "MIT",
"type": "library",
"keywords": [
],
"minimum-stability": "stable",
"authors": [
{
"name": "smiley",
"email": "smiley@chillerlan.net",
"homepage": "https://github.com/codemasher"
}
],
"require": {
"php": "^7.2",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-imagick": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
"ext-zlib": "*",
"psr/log": "^1.1",
"chillerlan/php-database": "^3.1"
},
"require-dev": {
"chillerlan/php-cache": "^3.0",
"chillerlan/php-dotenv": "^1.0",
"chillerlan/php-imagetiler": "^2.0"
},
"autoload": {
"files": [
"src/includes.php"
],
"psr-4": {
"codemasher\\WildstarDB\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"codemasher\\WildstarDBTest\\": "tests/",
"codemasher\\WildstarDBExamples\\": "examples/",
"codemasher\\WildstarDBCLI\\": "cli/"
}
}
}