-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.14 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
{
"name": "omatech/mage-core",
"require": {
"php": "^8.2",
"lambdish/phunctional": "v2.1",
"webonyx/graphql-php": "^v14.11"
},
"require-dev": {
"brianium/paratest": "^6.7",
"infection/infection": "^0.26",
"mockery/mockery": "^1.5",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.15.1",
"roave/security-advisories": "dev-latest",
"symfony/var-dumper": "^v6.1"
},
"autoload": {
"psr-4": {
"Omatech\\MageCore\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"paratest": "vendor/bin/paratest -p$(nproc)",
"infection": "vendor/bin/infection -j$(nproc) --coverage=build --skip-initial-tests --show-mutations",
"test": [
"@paratest",
"@infection"
],
"rector": "vendor/bin/rector",
"phpstan": "vendor/bin/phpstan analyse src --xdebug"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}