-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Description
Hello,
So I used the recommended way of installing magento via composer:
composer create-project --stability=beta --no-install magento/project-community-edition
However for Beta 12 I am seeing a different in files based on the way I install. So via magento/magento2 github repository I see: https://github.com/magento/magento2/blob/0.74.0-beta12/app/code/Magento/Backend/Model/Auth.php#L148
Line: 148
self::throwException(__('Please correct the user name or password.'));
However in my version installed via composer is see:
self::throwException(__('You did not sign in correctly or your account is temporarily disabled.'));
Stepping through the composer method I can see that it pulls the data from http://packages.magento.com/ as each package is then broken down into its modules. Should I take the composer ( packages.magento.com ) version as being the golden build ? If so why is there a difference in the files between what is tagged as a specific version ?