-
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 #418 from andres-montanez/nostromo
Release for 3.4
- Loading branch information
Showing
23 changed files
with
280 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/vendor/ | ||
/build | ||
composer.lock | ||
.mage.yml |
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ php: | |
- '5.6' | ||
- '7.0' | ||
- '7.1' | ||
- '7.2' | ||
|
||
install: | ||
- composer install | ||
|
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,19 @@ | ||
version: '2' | ||
services: | ||
php5: | ||
container_name: mage-php5 | ||
build: ./php5 | ||
volumes: | ||
- ../../:/home/magephp | ||
|
||
php7.0: | ||
container_name: mage-php7.0 | ||
build: ./php7.0 | ||
volumes: | ||
- ../../:/home/magephp | ||
|
||
php7.1: | ||
container_name: mage-php7.1 | ||
build: ./php7.1 | ||
volumes: | ||
- ../../:/home/magephp |
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,9 @@ | ||
FROM ubuntu:14.04 | ||
|
||
RUN apt-get update && apt-get upgrade -y | ||
RUN apt-get install -y vim curl git unzip | ||
RUN apt-get install -y php5-cli php5-curl | ||
|
||
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer | ||
|
||
WORKDIR /home/magephp |
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,9 @@ | ||
FROM ubuntu:16.04 | ||
|
||
RUN apt-get update && apt-get upgrade -y | ||
RUN apt-get install -y vim curl git unzip | ||
RUN apt-get install -y php7.0-cli php-zip php7.0-curl php7.0-xml | ||
|
||
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer | ||
|
||
WORKDIR /home/magephp |
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,9 @@ | ||
FROM ubuntu:17.10 | ||
|
||
RUN apt-get update && apt-get upgrade -y | ||
RUN apt-get install -y vim curl git unzip | ||
RUN apt-get install -y php7.1-cli php-zip php7.1-curl php7.1-xml | ||
|
||
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer | ||
|
||
WORKDIR /home/magephp |
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 |
---|---|---|
|
@@ -17,6 +17,6 @@ | |
*/ | ||
class Mage | ||
{ | ||
const VERSION = '3.3.0'; | ||
const VERSION = '3.x-dev'; | ||
const CODENAME = 'Nostromo'; | ||
} |
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
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
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 @@ | ||
magephp: | ||
log_dir: /no-temp | ||
environments: | ||
production: | ||
user: app | ||
branch: master | ||
host_path: /var/www/myapp | ||
releases: 4 | ||
exclude: | ||
- ./var/cache/* | ||
- ./var/log/* | ||
- ./web/app_dev.php | ||
hosts: | ||
- webserver1 | ||
- webserver2 | ||
- webserver3 | ||
pre-deploy: | ||
- git/update | ||
- composer/install | ||
- composer/dump-autoload | ||
on-deploy: | ||
- symfony/cache-warmup: { env: 'dev' } | ||
- symfony/assets-install: { env: 'dev' } | ||
- symfony/assetic-dump: { 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,27 @@ | ||
magephp: | ||
log_dir: /tmp | ||
environments: | ||
test: | ||
user: tester | ||
branch: test | ||
host_path: /var/www/test | ||
releases: 4 | ||
exclude: | ||
- ./var/cache/* | ||
- ./var/log/* | ||
- ./web/app_dev.php | ||
- | ||
- | ||
hosts: | ||
- testhost:202 | ||
pre-deploy: | ||
- git/update | ||
- composer/install | ||
- composer/dump-autoload | ||
on-deploy: | ||
- symfony/cache-warmup: { env: 'prod' } | ||
- symfony/assets-install: { env: 'prod' } | ||
- symfony/assetic-dump: { env: 'prod' } | ||
on-release: | ||
post-release: | ||
post-deploy: |
Oops, something went wrong.