Skip to content

Commit 1ed8d16

Browse files
author
Alexander Paliarush
committed
Refactoring
- Renamed m-composer-install => m-composer - Updated changelog and readme
1 parent ff84be6 commit 1ed8d16

File tree

5 files changed

+18
-7
lines changed

5 files changed

+18
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,36 @@ All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/).
55

66
* [\[Unreleased\]](#unreleased)
7+
* [\[v2.0.0\] - 2016-02-05](#v200---2016-02-05)
78
* [\[v1.0.0\] - 2016-01-11](#v100---2016-01-11)
89

910
## [Unreleased]
1011

12+
Nothing yet
13+
14+
## [v2.0.0] - 2016-02-05
15+
1116
### Changed
1217

1318
- Moved provisioning scripts
1419
- Magento project directory moved to vagrant project root. Current structure is as follows: `vagrant-magento/magento2ce/magento2ee`
1520
- PHP 7.0 is installed by default instead of PHP 5.5.9 (can be configured in [etc/config.yaml.dist](etc/config.yaml.dist))
1621
- Renamed configuration folder from `local.config` to `etc`
1722
- Set minimum Vagrant version as 1.8
23+
- Improved deployment speed in case of disabled NFS for folders sync
24+
- Used custom Vagrant box with pre-installed software necessary for Magento 2 development
25+
- Eliminated explicit dependency on PHP for Windows hosts (it can be downloaded and used locally for the project)
26+
- XSD URN generation is executed after Magento installation
1827

1928
### Added
2029

30+
- Added [project initialization script](init_project.sh) and host scripts for routine flows (compatible with OSX, *nix and Windows)
2131
- Implemented static value of forwarded SSH port to prevent necessity to reconfigure software accessing guest via SSH
2232
- Implemented collision prevention for IP address and host name (in case when several machines are created at once)
2333
- Added configuration file [etc/config.yaml.dist](etc/config.yaml.dist)
2434
- Added PHP 7.0 support
25-
- Added PHP Storm configuration during project initialization
26-
- Added [project initialization script](init_project.sh) for *nix and OSX hosts
27-
- Added ability to customize repository URLs and Apache config
35+
- Added PHP Storm configuration during project initialization (particularly automatic deployment settings)
36+
- Added automatic vagrant plugins installation
2837

2938
## [v1.0.0] - 2016-01-11
3039

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,9 @@ bash m-switch-to-ee
156156
Go to 'vagrant-magento' created earlier and run in command line:
157157

158158
```
159-
bash m-composer-install
159+
bash m-composer install
160+
OR
161+
bash m-composer update
160162
```
161163

162164
### Debugging with XDebug

m-composer-install renamed to m-composer

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ magento_ce_dir="${vagrant_dir}/magento2ce"
77
set -ex
88

99
cd ${magento_ce_dir}
10-
bash "${vagrant_dir}/scripts/host/composer.sh" install
10+
bash "${vagrant_dir}/scripts/host/composer.sh" "$@"

m-switch-to-ce

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ if [[ ${host_os} == "Windows" || $(bash "${vagrant_dir}/scripts/get_config_value
3636
fi
3737

3838
bash "${vagrant_dir}/m-clear-cache"
39-
bash "${vagrant_dir}/m-composer-install"
39+
bash "${vagrant_dir}/m-composer install"
4040
bash "${vagrant_dir}/m-reinstall"

m-switch-to-ee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ if [[ ${host_os} == "Windows" || $(bash "${vagrant_dir}/scripts/get_config_value
3737
fi
3838

3939
bash "${vagrant_dir}/m-clear-cache"
40-
bash "${vagrant_dir}/m-composer-install"
40+
bash "${vagrant_dir}/m-composer install"
4141
bash "${vagrant_dir}/m-reinstall"

0 commit comments

Comments
 (0)