I was using php5.5.12
,
And i have just upgraded it to php5.6.28
.
Even if i check my current php
version it shows PHP Version 5.6.28 using http://localhost/?phpinfo=1
.
Here is my Composer.json
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.2.*",
"illuminate/database": "~5.3",
"illuminate/support": "~5.3",
"laravel/cashier": "~7.0"
},
but when i run the command composer update
it keep throwing me error that
F:\wamp\www\punit\TPG>composer update
You are running composer with xdebug enabled. This has a major impact on runtime performance. See https://getcomposer.or
g/xdebug
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
- illuminate/database v5.3.4 requires php >=5.6.4 -> your PHP version (5.5.12) does not satisfy that requirement.
- illuminate/database v5.3.23 requires php >=5.6.4 -> your PHP version (5.5.12) does not satisfy that requirement.
- illuminate/database v5.3.16 requires php >=5.6.4 -> your PHP version (5.5.12) does not satisfy that requirement.
- illuminate/database v5.3.0 requires php >=5.6.4 -> your PHP version (5.5.12) does not satisfy that requirement.
- Installation request for illuminate/database ~5.3 -> satisfiable by illuminate/database[v5.3.0, v5.3.16, v5.3.23,
v5.3.4].
Error says that i am using php5.5.12
.
I want to install Laravel Cashier,
Is there any dependency i am missing ?