forked from craftcms/commerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.48 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
{
"name": "craftcms/commerce",
"description": "Craft Commerce",
"type": "craft-plugin",
"version": "3.0.5",
"keywords": [
"cms",
"craftcms",
"commerce",
"yii2"
],
"homepage": "https://craftcommerce.com",
"license": "proprietary",
"support": {
"email": "[email protected]",
"issues": "https://github.com/craftcms/commerce/issues?state=open",
"forum": "https://craftcms.stackexchange.com/",
"source": "https://github.com/craftcms/commerce",
"docs": "https://docs.craftcms.com/commerce/v2/",
"rss": "https://github.com/craftcms/commerce/releases.atom"
},
"require": {
"craftcms/cms": "^3.4.0",
"dompdf/dompdf": "^0.8.3",
"moneyphp/money": "^3.2.1",
"ibericode/vat": "^1.1.2"
},
"autoload": {
"psr-4": {
"craft\\commerce\\": "src/",
"craftcommercetests\\fixtures\\": "tests/fixtures/"
}
},
"extra": {
"handle": "commerce",
"name": "Craft Commerce",
"description": "An amazingly powerful and flexible e-commerce platform for Craft CMS.",
"developer": "Pixel & Tonic",
"documentationUrl": "https://docs.craftcms.com/commerce/v2/"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"codeception/codeception": "^3.0",
"vlucas/phpdotenv": "^3.4"
},
"scripts": {
"testunit": [
"Composer\\Config::disableProcessTimeout",
"codecept run unit"
]
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.1.30"
}
}
}