README: add development phase + remove create-project note (not practical)

This commit is contained in:
TomasVotruba 2018-01-04 09:43:02 +01:00
parent 9082508c6a
commit 7b3d68fc03
2 changed files with 3 additions and 17 deletions

View File

@ -1,5 +1,8 @@
# Rector - Upgrade your Legacy App to Modern Codebase
Rector is under development phase in 2018, to figure out the best way to use it in applications, polish API of Rector classes and get feedback from community. Please consider this while using it and report issues or post ideas you'll come up with while using. Thank you!
[![Build Status](https://img.shields.io/travis/rectorphp/rector/master.svg?style=flat-square)](https://travis-ci.org/rectorphp/rector)
[![Coverage Status](https://img.shields.io/coveralls/RectorPHP/Rector/master.svg?style=flat-square)](https://coveralls.io/github/rectorphp/rector?branch=master)
@ -33,8 +36,6 @@ Rector can:
composer require --dev rector/rector 'dev-master' nikic/php-parser '4.0.x-dev'
```
Do you have old PHP or dependencies in conflict? Ok, [it is not a problem](/docs/HowUseWithOldPhp.md).
## How to Reconstruct your Code
### A. Prepared Sets

View File

@ -1,15 +0,0 @@
### How to use on PHP < 7.1 or Incompatible Composer Dependencies
You must have an isolated environment with PHP 7.1 (for example in a Docker container). When you have it then run following command:
```bash
composer create-project rector/rector:'dev-master' path-to-rector
```
You will be able to run Rector like this:
```bash
path-to-rector/bin/rector <arguments>
```
Now you can read more in [README](../README.md/#install).