-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (48 loc) · 1.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
{
"name": "stellarwp/models",
"description": "A library for a simple model structure.",
"keywords": ["stellarwp"],
"type": "library",
"homepage": "https://github.com/stellarwp/models",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "StellarWP",
"homepage": "https://github.com/stellarwp"
}
],
"config": {
"preferred-install": "dist",
"platform": {
"php": "7.0"
},
"allow-plugins": {
"kylekatarnls/update-helper": true
}
},
"require": {
"stellarwp/db": "^1.0.3"
},
"require-dev": {
"codeception/module-asserts": "^1.0",
"codeception/module-cli": "^1.0",
"codeception/module-db": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-rest": "^1.0",
"codeception/module-webdriver": "^1.0",
"codeception/util-universalframework": "^1.0",
"lucatume/wp-browser": "^3.0.14",
"phpunit/phpunit": "~6.0"
},
"autoload": {
"psr-4": {
"StellarWP\\Models\\": "src/Models/"
}
},
"autoload-dev": {
"psr-4": {
"StellarWP\\Models\\Tests\\": "tests/_support/Helper/"
}
}
}