-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.26 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
{
"name": "attlaz/magento2-module-attlaz-base",
"description": "Attlaz Magento2 Base Module",
"type": "magento2-module",
"license": "MIT",
"homepage": "https://attlaz.com",
"keywords": [
"attlaz",
"ipaas",
"connection",
"synchronize"
],
"require": {
"php": ">=8.1",
"attlaz/client": "^1.11",
"attlaz/attlaz-monolog": "0.0.*|^1.1.3",
"magento/framework": ">=103.0.4",
"magento/module-store": ">=101",
"thecodingmachine/safe": "^v2.5.0"
},
"require-dev": {
"phpunit/phpunit": "~9.5.0",
"phpstan/phpstan": "^1.10.16",
"thecodingmachine/phpstan-safe-rule": "^v1.2.0",
"friendsofphp/php-cs-fixer": "^v3.17.0"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Attlaz\\Base\\": "src"
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true
}
},
"scripts": {
"lint:fix": " ./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php",
"phpstan": " ./vendor/bin/phpstan analyse --memory-limit=512M",
"phpstan:generate-baseline": " ./vendor/bin/phpstan analyse --generate-baseline --memory-limit=512M"
}
}