-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
53 lines (53 loc) · 1.77 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
{
"name": "run_as_root/magento-cli-auto-proxy",
"description": "Makes all Magento CLI commands construct dependencies be injected as Proxy.",
"type": "magento2-component",
"license": "MIT",
"require": {
"php": "^7.4 | ^8",
"magento/framework": ">=102.0.7"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": ">9"
},
"repositories": [
{
"type": "composer",
"url": "https://mirror.mage-os.org/",
"only": [
"magento/*"
]
}
],
"autoload": {
"psr-4": {
"RunAsRoot\\CliConstructorArgAutoProxy\\": "lib"
}
},
"extra": {
"map": [
[
"component/app/etc/cli_arg_auto_proxy/di.xml",
"app/etc/cli_arg_auto_proxy/di.xml"
]
]
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": false
}
},
"scripts": {
"sniffer:php7.4": "phpcs -p ./lib --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 7.4",
"sniffer:php8.0": "phpcs -p ./lib --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.0",
"sniffer:php8.1": "phpcs -p ./lib --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.1",
"sniffer:php8.2": "phpcs -p ./lib --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.2",
"sniffer:php8.3": "phpcs -p ./lib --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.3",
"phpstan": "phpstan",
"phpunit": "vendor/bin/phpunit -c phpunit.xml"
}
}