forked from akunzai/MageBridgeCore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
86 lines (86 loc) · 2.35 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "akunzai/magebridgecore",
"description": "MageBridge for Joomla!",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Charley Wu",
"email": "[email protected]"
},
{
"name": "Jisse Reitsma (Yireo)",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"magento-hackathon/magento-composer-installer": true,
"cweagans/composer-patches": true
},
"preferred-install": "dist",
"sort-packages": true
},
"repositories": [
{
"type": "package",
"package": {
"name": "joomla/joomla-cms",
"version": "5.0.2",
"dist": {
"url": "https://github.com/joomla/joomla-cms/releases/download/5.0.2/Joomla_5.0.2-Stable-Full_Package.zip",
"type": "zip"
},
"source": {
"url": "https://github.com/joomla/joomla-cms.git",
"type": "git",
"reference": "tags/5.0.2"
}
}
},
{
"type": "package",
"package": {
"name": "akunzai/joomla-stubs",
"version": "master",
"source": {
"url": "https://github.com/akunzai/joomla-stubs.git",
"type": "git",
"reference": "master"
}
}
}
],
"require": {
"php": ">=8.1",
"magento-hackathon/magento-composer-installer": "^4.0.2"
},
"require-dev": {
"akunzai/joomla-stubs": "dev-master",
"friendsofphp/php-cs-fixer": "^3.50",
"joomla/joomla-cms": "5.0.2",
"openmage/magento-lts": "^20.5",
"phpstan/phpstan": "^1.10"
},
"extra": {
"magento-root-dir": "vendor/openmage/magento-lts"
},
"prefer-stable": true,
"scripts": {
"lint": [
"php-cs-fixer fix --diff --dry-run"
],
"fix": [
"php-cs-fixer -- fix"
],
"phpstan": [
"phpstan analyse"
],
"phpstan-baseline": [
"phpstan analyse --generate-baseline"
],
"build": [
"./build.sh"
]
}
}