-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
53 lines (53 loc) · 1.44 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": "truelayer/magento2",
"description": "TrueLayer extension for Magento 2",
"type": "magento2-module",
"version": "2.3.0",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"require": {
"magento/framework": ">=103.0.0",
"magento/module-payment": ">=100.1.0",
"magento/module-checkout": ">=100.1.0",
"magento/module-sales": ">=100.1.0",
"truelayer/client": ">=2.6.0",
"php": ">=8.1.0"
},
"require-dev": {
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "^3.64",
"bitexpert/phpstan-magento": "*"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"TrueLayer\\Connect\\": ""
}
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true,
"magento/magento-composer-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"magento/inventory-composer-installer": true,
"php-http/discovery": true,
"magento/composer-root-update-plugin": true
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse --memory-limit=-1",
"checks": [
"@analyse"
]
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
}
}