-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.05 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.05 KB
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
{
"name": "jord-jd/uxdm",
"description": "UXDM helps developers migrate data from one system or format to another.",
"type": "library",
"authors": [
{
"name": "Jordan Hall",
"email": "jordan@hall05.co.uk"
}
],
"autoload": {
"psr-4": {
"JordJD\\uxdm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JordJD\\uxdm\\TestUnitClasses\\": "tests/Unit/includes/TestClasses/",
"JordJD\\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",
"jord-jd/array_undot": "^6.0",
"jord-jd/php-cli-progress-bar": "^4.0",
"jord-jd/omega-validator": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
"fakerphp/faker": "^1.9.1",
"cache/array-adapter": "^1.0"
},
"replace": {
"divineomega/uxdm": "self.version"
},
"extra": {
"branch-alias": {
"dev-master": "6.1-dev"
}
}
}