-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 2.3 KB
/
Copy pathcomposer.json
File metadata and controls
75 lines (75 loc) · 2.3 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "finetuned/modx-cli",
"description": "MODX 3 CLI",
"keywords": ["MODX", "CLI", "shell"],
"license": "MIT",
"authors": [
{
"name": "Finetuned Limited",
"email": "team@finetuned.co.uk",
"homepage": "https://finetuned.co.uk",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"aws/aws-sdk-php": "3.371.4",
"symfony/console": "^5.4 || ^6.0",
"symfony/process": "^5.4 || ^6.0",
"symfony/finder": "^5.4 || ^6.0",
"symfony/yaml": "^5.4 || ^6.0",
"psr/log": "^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"modx/revolution": "^3.1",
"phpspec/prophecy": "^1.20",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^4.0",
"vlucas/phpdotenv": "^5.6",
"phpstan/phpstan": "^1.10"
},
"bin": [
"bin/modx"
],
"config": {
"preferred-install": "dist",
"audit": {
"ignore": [
"PKSA-4t1p-xpk2-nsss",
"PKSA-dxyf-6n16-t87m",
"PKSA-n3s6-289w-qtqb"
]
}
},
"autoload": {
"psr-4": {
"MODX\\CLI\\": "src/",
"MODX\\Revolution\\": "vendor/modx/revolution/core/src/Revolution/"
}
},
"autoload-dev": {
"psr-4": {
"MODX\\CLI\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.0-dev"
}
},
"scripts": {
"test": "phpunit",
"test:unit": "phpunit --testsuite default",
"test:integration": "MODX_INTEGRATION_TESTS=1 phpunit --testsuite integration",
"test:all": "phpunit --testsuite all",
"test:coverage": "XDEBUG_MODE=coverage phpunit -c phpunit-coverage.xml.dist",
"test:unit:coverage": "XDEBUG_MODE=coverage phpunit -c phpunit-coverage.xml.dist --testsuite default",
"test:integration:coverage": "XDEBUG_MODE=coverage MODX_INTEGRATION_TESTS=1 phpunit -c phpunit-coverage.xml.dist --testsuite integration",
"cs:check": "phpcs",
"cs:fix": "phpcbf",
"cs": "@cs:check",
"analyse": "phpstan analyse",
"analyse:baseline": "phpstan analyse --generate-baseline"
}
}