netson / l4gettext

Package to add Gettext support to Laravel 4 applications
61 stars 8 forks source link

Can't install with Laravel > 4.1 #7

Closed ivansjg closed 10 years ago

ivansjg commented 10 years ago

Laravel now is at 4.1.18 version, and in the composer.json of your package you don't support 4.1.x, only 4.1. Is it Laravel 4.1.x supported?

casoetan commented 10 years ago

Any update on this yet?

netson commented 10 years ago

Sorry, I've been crazy busy and haven't gotten around to updating it; will see if I can find a few minutes this week to fix the composer.json - or, if someone could submit a pull request things could move along a little faster!

ripf commented 10 years ago

Will this be fixed in near future? =)

netson commented 10 years ago

should be fixed in master now ( commit e506fb4 ); will create a new version later this weekend!

netson commented 10 years ago

Created a new stable release 1.3.1, but using master should also work. If you run into any issues, let me know!

facerderacer commented 10 years ago

There are still some problems whit this when you try to install via the composer it still takes version 1.3.0 and not version 1.3.1

netson commented 10 years ago

As I just mentioned in the other issue #8, I just committed a fix so it should work again!

facerderacer commented 10 years ago

Dear,

Im still getting the same error when im trying to install see below for the error message. Is there something im doing wrong?

php composer.phar require "netson/l4gettext:1.3.*" ./composer.json has been updated Loading composer repositories with package information Updating dependencies (including require-dev) Your requirements could not be resolved to an installable set of packages.

Problem 1

Potential causes:

Read http://getcomposer.org/doc/articles/troubleshooting.md for further common problems.

Installation failed, reverting ./composer.json to its original content.

2014-03-10 16:06 GMT+01:00 netson notifications@github.com:

As I just mentioned in the other issue #8https://github.com/netson/l4gettext/issues/8, I just committed a fix so it should work again!

Reply to this email directly or view it on GitHubhttps://github.com/netson/l4gettext/issues/7#issuecomment-37192097 .

netson commented 10 years ago

Can you post your composer.json file here? Maybe that will hint at what seems to be going wrong...

facerderacer commented 10 years ago

{ "name": "laravel/laravel", "description": "The Laravel Framework.", "keywords": ["framework", "laravel"], "license": "MIT", "require": { "laravel/framework": "4.1.*" }, "autoload": { "classmap": [ "app/commands", "app/controllers", "app/models", "app/database/migrations", "app/database/seeds", "app/tests/TestCase.php" ] }, "scripts": { "post-install-cmd": [ "php artisan clear-compiled", "php artisan optimize" ], "post-update-cmd": [ "php artisan clear-compiled", "php artisan optimize" ], "post-create-project-cmd": [ "php artisan key:generate" ] }, "config": { "preferred-install": "dist" }, "minimum-stability": "stable" }

2014-03-10 16:51 GMT+01:00 netson notifications@github.com:

Can you post your composer.json file here? Maybe that will hint at what seems to be going wrong...

Reply to this email directly or view it on GitHubhttps://github.com/netson/l4gettext/issues/7#issuecomment-37197686 .

netson commented 10 years ago

hmm, strange. I just created an empty folder and copied your composer.json into it. Then after running composer update I ran the command php composer.phar require netson/l4gettext:1.3.* and the package installs without any problems. Have you tried running php composer.phar self-update ?