beaudierman / ups

A Laravel package used to communicate with the UPS API to generate shipment rate quotes.
MIT License
12 stars 7 forks source link

Laravel 4.2 Compatability #2

Closed carcinocron closed 10 years ago

carcinocron commented 10 years ago

This line from composer.json is preventing me from using Laravel 4.2. (I doubt there are any real incompatibilities.

    "require": {
        "php": ">=5.3.0",
        "illuminate/support": "4.1.*"
    },

Are there any plans for supporting 4.2?

beaudierman commented 10 years ago

I do plan on updating the package for Laravel 4.2, but, since that requires PHP 5.4 it may be a few weeks. This was written for an enterprise app that's running on Ubuntu 12.04(PHP 5.3) and until I can validate the entire app runs on Ubuntu 14.04 I can't update the package.

beaudierman commented 10 years ago

I went ahead and updated that line in composer.json to the following:

    "require": {
        "php": ">=5.3.0",
        "illuminate/support": "4.*"
    },

Initial testing didn't reveal any issues with Laravel 4.2 but I still recommend 4.1.* until I can completely test.

carcinocron commented 10 years ago

Thanks!