-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
44 lines (44 loc) · 936 Bytes
/
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
{
"name": "boltpay/bolt-magento1",
"homepage": "https://bolt.com",
"type": "magento-module",
"license":"Open Software License (OSL 3.0)",
"description":"Plugin to integrate Bolt with Magento 1",
"authors":[
{
"name": "Bolt Engineering",
"email": "[email protected]"
}
],
"require": {
"php": "^5.5",
"ext-gd": "*",
"ext-PDO": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"magento/marketplace-eqp": "2.*",
"phpunit/phpunit": "^4.8"
},
"scripts": {
"post-install-cmd": [
"bash tools/setup.sh"
]
},
"repositories": [
{
"type": "composer",
"url": "https://packages.firegento.com"
},
{
"type": "vcs",
"url": "https://github.com/BoltApp/bolt-magento1"
}
],
"extra":{
"magento-root-dir": "./",
"auto-append-gitignore": false,
"magento-deploystrategy": "copy",
"magento-force": true
}
}