-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.61 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "imaginationmedia/module-xml-validator",
"description": "Adds a console command for validating XML files against their configured schema",
"type": "magento2-module",
"version": "0.2.1",
"license": "OSL-3.0",
"require": {
"php": "^7.4 || ^8.0",
"ext-dom": "*",
"ext-libxml": "*",
"ext-pcre": "*",
"composer/composer": "^2.2",
"magento/framework": "~103.0.0",
"symfony/console": "^4.4 || ^5.4 || ^6.0",
"symfony/finder": "^4.4 || ^5.4 || ^6.0",
"symfony/polyfill-php80": "^1.24"
},
"require-dev": {
"bitexpert/phpstan-magento": "^0.25.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"magento/magento-coding-standard": "*",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"ImaginationMedia\\XmlValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ImaginationMedia\\XmlValidator\\Test\\": "test/"
}
},
"authors": [
{
"role": "Developer",
"name": "Joseph Leedy",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"magento/composer-dependency-version-audit-plugin": true,
"phpstan/extension-installer": true
}
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
}
}