composer.json 1.87 KB
Newer Older
Ketan's avatar
Ketan committed
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
{
    "name": "temando/module-shipping-m2",
    "description": "Temando multi-carrier shipping extension for Magento 2",
    "version": "1.5.1",
    "type": "magento2-module",
    "license": "OSL-3.0",
    "require": {
        "php": "~7.1.3||~7.2.0",
        "ext-iconv": "*",
        "ext-intl": "*",
        "ext-json": "*",
        "magento/framework": "^102.0.0",
        "magento/module-backend": "^101.0.0",
        "magento/module-catalog": "^103.0.0",
        "magento/module-checkout": "^100.3.0",
        "magento/module-config": "^101.1.0||^102.0.0",
        "magento/module-customer": "^102.0.0",
        "magento/module-directory": "^100.3.0",
        "magento/module-eav": "^102.0.0",
        "magento/module-email": "^101.0.0",
        "magento/module-integration": "^100.3.0",
        "magento/module-multishipping": "^100.3.0",
        "magento/module-payment": "^100.3.0",
        "magento/module-quote": "^101.1.0",
        "magento/module-sales": "^102.0.0",
        "magento/module-security": "^100.3.0",
        "magento/module-shipping": "^100.3.0",
        "magento/module-store": "^101.0.0",
        "magento/module-tax": "^100.3.0",
        "magento/module-ui": "^101.1.0",
        "monolog/monolog": "^1.17.0",
        "psr/log": "~1.0",
        "zendframework/zend-barcode": "^2.7.0",
        "zendframework/zend-http": "^2.6.0"
    },
    "suggest": {
        "magento/module-rma": "^101.1.0",
        "magento/module-scalable-checkout": "^100.3.0",
        "magento/module-scalable-oms": "^100.3.0"
    },
    "authors":[
        {
            "name": "Christoph Aßmann",
            "email": "christoph.assmann@netresearch.de",
            "homepage": "https://www.netresearch.de/",
            "role": "Developer"
        }
    ],
    "autoload": {
        "files": [
            "registration.php"
        ],
        "psr-4": {
            "Temando\\Shipping\\": ""
        }
    }
}