forked from DivineOmega/uxdm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.12 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
{
"name": "divineomega/uxdm",
"description": "UXDM helps developers migrate data from one system or format to another.",
"type": "library",
"authors": [
{
"name": "Jordan Hall",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"DivineOmega\\uxdm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DivineOmega\\uxdm\\TestUnitClasses\\": "tests/Unit/includes/TestClasses/",
"DivineOmega\\uxdm\\TestIntegrationClasses\\": "tests/Integration/includes/TestClasses/"
}
},
"license": "LGPL-3.0-only",
"require": {
"php": ">=7.1",
"ext-pdo": "*",
"ext-dom": "*",
"ext-json": "*",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"divineomega/array_undot": "^4.1.0",
"divineomega/php-cli-progress-bar": "^2.0",
"divineomega/omega-validator": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^7.0||^8.0",
"fzaninotto/faker": "^1.6",
"php-coveralls/php-coveralls": "^2.0",
"cache/array-adapter": "^1.0"
}
}