forked from joomla-projects/JA-Advanced-Migration-Tool
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.05 KB
/
composer.json
File metadata and controls
42 lines (42 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
{
"name": "binary/cms-migrator",
"description": "Advanced Migration Tool for Joomla - Migrate from WordPress and other CMS platforms",
"type": "joomla-component",
"keywords": [
"joomla",
"migration",
"wordpress",
"cms",
"import"
],
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.4.0",
"phpseclib/phpseclib": "^3.0",
"ext-zip": "*"
},
"autoload": {
"psr-4": {
"Joomla\\Component\\CmsMigrator\\Administrator\\": "src/component/admin/src/"
}
},
"require-dev": {
"phpunit/phpunit": "^10",
"joomla/test": "^2",
"squizlabs/php_codesniffer": "*"
},
"autoload-dev": {
"psr-4": {
"Joomla\\Component\\CmsMigrator\\Tests\\": "tests/unit/"
}
},
"scripts": {
"test:syntax": "php ./tests/check_syntax.php",
"test:unit": "phpunit --colors=always",
"test": [
"@test:syntax",
"@test:unit",
"npm test"
]
}
}