-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #450 from andres-montanez/discovery-one
Fixes for v4.1.1
- Loading branch information
Showing
8 changed files
with
193 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,6 @@ | |
*/ | ||
class Mage | ||
{ | ||
const VERSION = '4.1.0'; | ||
const VERSION = '4.1.1'; | ||
const CODENAME = 'Discovery One'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
/* | ||
* This file is part of the Magallanes package. | ||
* | ||
* (c) Andrés Montañez <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Mage\Tests; | ||
|
||
use Mage\Tests\Runtime\RuntimeWindowsMockup; | ||
use Mage\MageApplication; | ||
|
||
class MageApplicationWindowsMockup extends MageApplication | ||
{ | ||
/** | ||
* Gets the Runtime instance to use | ||
* | ||
* @return RuntimeWindowsMockup | ||
*/ | ||
protected function instantiateRuntime() | ||
{ | ||
return new RuntimeWindowsMockup(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
magephp: | ||
log_dir: /tmp | ||
environments: | ||
test: | ||
user: tester | ||
branch: test | ||
from: ./dist | ||
copyDirectory: true | ||
host_path: /var/www/test | ||
releases: 4 | ||
exclude: | ||
- ./var/cache/* | ||
- ./var/log/* | ||
- ./web/app_dev.php | ||
- | ||
- | ||
hosts: | ||
- testhost | ||
pre-deploy: | ||
- git/update | ||
- composer/install | ||
- composer/dump-autoload | ||
on-deploy: | ||
- symfony/cache-warmup: { env: 'dev' } | ||
- symfony/assets-install: { env: 'dev' } | ||
- symfony/cache-pool-prune: { env: 'dev' } | ||
on-release: | ||
post-release: | ||
post-deploy: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
/* | ||
* This file is part of the Magallanes package. | ||
* | ||
* (c) Andrés Montañez <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Mage\Tests\Runtime; | ||
|
||
class RuntimeWindowsMockup extends RuntimeMockup | ||
{ | ||
public function isWindows() | ||
{ | ||
return true; | ||
} | ||
} |