This happened when I tried installing the zizaco confide package.
This is how my composer.json looks after adding it:
http://pastebin.com/R9KgCaPR
I even reverted it back to where it was when it was working and still nothing:
http://pastebin.com/5hSvMs9E
And this is what command line gives me:
C:\Users\Halichu>H:
H:\>cd "H:\WD SmartWare.swstor\HALEY-HP\Source\ATA\swafap"
H:\WD SmartWare.swstor\HALEY-HP\Source\ATA\swafap>composer update
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
- Conclusion: remove laravel/framework 4.0.x-dev
- Conclusion: don't install laravel/framework 4.0.x-dev
- Conclusion: don't install laravel/framework v4.0.10
- Conclusion: don't install laravel/framework v4.0.9
- Conclusion: don't install laravel/framework v4.0.8
- Conclusion: don't install laravel/framework v4.0.7
- Conclusion: don't install laravel/framework v4.0.6
- Conclusion: don't install laravel/framework v4.0.5
- Conclusion: don't install laravel/framework v4.0.4
- Conclusion: don't install laravel/framework v4.0.3
- Conclusion: don't install laravel/framework v4.0.2
- Conclusion: don't install laravel/framework v4.0.1
- Conclusion: don't install laravel/framework v4.0.0
- Installation request for zizaco/confide 3.0.x -satisfiable by zizaco/con fide[3.0.0].
- Conclusion: don't install laravel/framework v4.0.0-BETA4
- Conclusion: don't install laravel/framework v4.0.0-BETA3
- zizaco/confide 3.0.0 requires illuminate/support 4.1.x -satisfiable by l aravel/framework[4.1.x-dev, v4.1.0, v4.1.1, v4.1.2,
v4.1.3, v4.1.4, v4.1.5, v4.1 .6, v4.1.7, v4.1.8, v4.1.9],
illuminate/support[4.1.x-dev, v4.1.0, v4.1.1, v4.1. 2, v4.1.3, v4.1.4,
v4.1.5, v4.1.6, v4.1.7, v4.1.8, v4.1.9].
- Can only install one of: laravel/framework[v4.0.0-BETA2, 4.1.x-dev].
- Can only install one of: laravel/framework[v4.1.0, v4.0.0-BETA2].
- Can only install one of: laravel/framework[v4.1.1, v4.0.0-BETA2].
- Can only install one of: laravel/framework[v4.1.2, v4.0.0-BETA2].
- Can only install one of: laravel/framework[v4.1.3, v4.0.0-BETA2].
- Can only install one of: laravel/framework[v4.1.4, v4.0.0-BETA2].
- Can only install one of: laravel/framework[v4.1.5, v4.0.0-BETA2].
- Can only install one of: laravel/framework[v4.1.6, v4.0.0-BETA2].
- Can only install one of: laravel/framework[v4.1.7, v4.0.0-BETA2].
- Can only install one of: laravel/framework[v4.1.8, v4.0.0-BETA2].
- Can only install one of: laravel/framework[v4.1.9, v4.0.0-BETA2].
- don't install illuminate/support 4.1.x-dev|don't install laravel/framework v4.0.0-BETA2
- don't install illuminate/support 4.1.x-dev|don't install laravel/framework v4.0.0-BETA2
- don't install illuminate/support v4.1.0|don't install laravel/framework v4 .0.0-BETA2
- don't install illuminate/support v4.1.1|don't install laravel/framework v4 .0.0-BETA2
- don't install illuminate/support v4.1.2|don't install laravel/framework v4 .0.0-BETA2
- don't install illuminate/support v4.1.3|don't install laravel/framework v4 .0.0-BETA2
- don't install illuminate/support v4.1.4|don't install laravel/framework v4 .0.0-BETA2
- don't install illuminate/support v4.1.5|don't install laravel/framework v4 .0.0-BETA2
- don't install illuminate/support v4.1.6|don't install laravel/framework v4 .0.0-BETA2
- don't install illuminate/support v4.1.7|don't install laravel/framework v4 .0.0-BETA2
- don't install illuminate/support v4.1.8|don't install laravel/framework v4 .0.0-BETA2
- don't install illuminate/support v4.1.9|don't install laravel/framework v4 .0.0-BETA2
- Installation request for laravel/framework 4.0.* -satisfiable by laravel /framework[4.0.x-dev, v4.0.0, v4.0.0-BETA2, v4.0.0-BETA3,
v4.0.0-BETA4, v4.0.1, v4.0.10, v4.0.2, v4.0.3, v4.0.4, v4.0.5, v4.0.6,
v4.0.7, v4.0.8, v4.0.9].
H:\WD SmartWare.swstor\HALEY-HP\Source\ATA\swafap>
I reviewed issues in Zizaco confide and this was an issue, but they supposedly fixed this about 2 days ago.
Thanks for any help.
Packages might be anything from a great way to work with dates like Carbon or a package that allows you to associate files with Eloquent models like Spatie's Laravel Media Library. There are different types of packages. Some packages are stand-alone, meaning they work with any PHP framework. Carbon and PHPUnit are examples of stand-alone packages.
Once your package has been configured for discovery, Laravel will automatically register its service providers and facades when it is installed, creating a convenient installation experience for your package's users.
If your package contains translation files, you may use the loadTranslationsFrom method to inform Laravel how to load them. For example, if your package is named courier, you should add the following to your service provider's boot method: * Bootstrap any package services.
In a Laravel application's config/app.php configuration file, the providers option defines a list of service providers that should be loaded by Laravel. When someone installs your package, you will typically want your service provider to be included in this list.
You have this
"require": {
"laravel/framework": "4.0.*", // <-- you have full stack in here
"illuminate/support": "4.1.*", // <-- remove this line
"teepluss/asset": "dev-master",
"zizaco/confide": "3.0.x"
},
Remove "illuminate/support": "4.1.*"
and composer update
or if it doesn't help hen try to upgare to Laravel
-4.1*
. Follow Upgrade Guide.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With