-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
46 lines (46 loc) · 1.16 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
{
"name": "magento/magento-semver",
"description": "Magento Semantic Version Checker",
"version": "13.0.0-beta5",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"bin": ["bin/svc"],
"require": {
"php": "~8.1.0||~8.2.0||~8.3.0",
"ext-json": "*",
"laminas/laminas-stdlib": "^3.18",
"nikic/php-parser": "^4.15",
"phpstan/phpdoc-parser": "^0.5.5",
"sabre/xml": "~2.2.3",
"symfony/console": "~6.4.0",
"tomzx/php-semver-checker": "^0.16.0",
"wikimedia/less.php": "^3.2"
},
"require-dev": {
"ext-dom": "*",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "~3.6.0"
},
"autoload": {
"psr-4": {
"Magento\\SemanticVersionChecker\\": "src/",
"Magento\\SemanticVersionChecker\\Test\\": "dev/tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"laminas/laminas-dependency-plugin": true
}
},
"archive": {
"exclude": [
".github",
".gitignore",
"dev/tests",
"composer.lock"
]
}
}