-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.81 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 1.81 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
{
"name": "mxrvx/autoloader",
"type": "library",
"license": "MIT",
"description": "Automatic loading `bootstrap.php` packages installed using composer for MODX Revolution",
"keywords": [
"MODX",
"Revolution"
],
"authors": [
{
"name": "Vgrish",
"email": "vgrish@gmail.com"
}
],
"support": {
"issues": "https://github.com/mxrvx/autoloader/issues",
"source": "https://github.com/mxrvx/autoloader",
"docs": "https://github.com/mxrvx/autoloader",
"chat": "https://t.me/mxrvx_official"
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-pdo": "*",
"symfony/console": "^5.4",
"php-di/php-di": "^7.0",
"mxrvx/schema-system-settings": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^6.0.0",
"mxrvx/code-style": "^1.0.0",
"modx/revolution": "v3.0.0-pl"
},
"autoload": {
"psr-4": {
"MXRVX\\Autoloader\\": "core/src/"
}
},
"autoload-dev": {
"psr-4": {
"MXRVX\\Autoloader\\Tests\\": "tests/Autoloader/"
}
},
"bin": [
"bin/mxrvx-autoloader"
],
"config": {
"sort-packages": true,
"allow-plugins": false
},
"prefer-stable": true,
"minimum-stability": "dev",
"scripts": {
"cs:diff": "php-cs-fixer fix --dry-run -v --diff",
"cs:fix": "php-cs-fixer fix -v",
"psalm": "psalm --no-cache",
"psalm:baseline": "psalm --set-baseline=psalm-baseline.xml",
"test": "phpunit --color=always",
"auto-scripts": {
"dump:autoload": "composer dump-autoload --optimize"
},
"post-install-cmd": [
"@auto-scripts"
]
}
}