This repository was archived by the owner on Nov 19, 2025. It is now read-only.

Description
Base requirement is really 5.3, not 5.4. Only dev dependencies actually require 5.4.
"require": {
"php": ">=5.4.0",
"fzaninotto/faker": "~1.4"
},
"require-dev": {
"mockery/mockery": "~0.9",
"illuminate/support": "~5",
"illuminate/database": "~5",
"phpunit/phpunit": "~4.6"
},
Should be:
"require": {
"php": ">=5.3.0",
"fzaninotto/faker": "~1.4"
},
"require-dev": {
"php": ">=5.4.0",
"mockery/mockery": "~0.9",
"illuminate/support": "~5",
"illuminate/database": "~5",
"phpunit/phpunit": "~4.6"
},