|
1 | | -<img src="https://app.continuousphp.com/assets/logos/continuousphp.svg" alt="ContinuousPHP" width="250px" align="right"/> |
| 1 | +<a href="http://continuous.lu"> |
| 2 | + <img src="https://app.continuousphp.com/assets/logos/continuousphp.svg" alt="ContinuousPHP" width="250px" align="right"/> |
| 3 | +</a> |
2 | 4 |
|
3 | 5 | <p align="left"> |
4 | | - <a href="https://continuousphp.com/git-hub/continuousphp/cli"><img alt="Build Status" src="https://status.continuousphp.com/git-hub/continuousphp/cli?token=9800bb61-98f2-447d-a331-025f0b9af298" /></a> |
5 | | - <img src="https://img.shields.io/badge/version-alpha-red.svg" alt="Version" /> |
6 | | - <a href="https://packagist.org/packages/continuousphp/cli"><img src="https://img.shields.io/packagist/dt/continuousphp/cli.svg" alt="Packagist" /></a> |
| 6 | + <a href="https://continuousphp.com/git-hub/continuousphp/cli"><img alt="Build Status" src="https://status.continuousphp.com/git-hub/continuousphp/cli?token=8eb1b41e-343a-41b5-b68f-179fb1ce1ffe&branch=master" /></a> |
7 | 7 | </p> |
| 8 | + |
8 | 9 | <p align="left"> |
9 | 10 | ContinuousPHP© is the first and only PHP-centric PaaS to build, package, test and deploy applications in the same workflow. |
10 | 11 | </p> |
11 | 12 |
|
12 | 13 | # ContinuousPHP\Cli |
13 | 14 |
|
14 | | -CLI for ContinuousPHP platform. Manage project and build easily from your favorite terminal. |
| 15 | +CLI for the ContinuousPHP platform. Manage projects and build easily from your favorite terminal. |
15 | 16 |
|
16 | | -## Installation |
| 17 | +## Installation as Phar ( Recommended ) |
17 | 18 |
|
18 | | -With [Composer](https://getcomposer.org/), to include this library into your dependencies, you need to require [`continuousphp/cli`](https://packagist.org/packages/continuousphp/cli): |
| 19 | +Download the latest version of continuousphpcli as a Phar: |
19 | 20 |
|
20 | 21 | ```sh |
21 | | -$ composer require continuousphp/cli '~0.0' |
| 22 | +$ curl -LSs https://continuousphp.github.io/cli/phar-installer.php | php |
22 | 23 | ``` |
23 | 24 |
|
24 | | -## Usage |
| 25 | +The command will check your PHP settings, warn you of any issues, and then download it to the current directory. |
| 26 | +From there, you may place it anywhere you want to make it easier to access (such as `/usr/local/bin`) and chmod it to 755. |
| 27 | +You can even rename it to just `continuousphpcli` to avoid having to type the .phar extension every time. |
| 28 | + |
| 29 | +## Documentation |
| 30 | + |
| 31 | +You can find Markdown documentation into `docs` subfolder or on web version at https://continuousphp.github.io/cli/doc |
| 32 | +Thanks to open an issue if you see something missing in our documentation. |
| 33 | + |
| 34 | +## Credit |
| 35 | + |
| 36 | +This project was made based on Open-Source project, thanks to them! |
| 37 | + |
| 38 | + * [Box](https://github.com/box-project/box2) - PHAR builder |
| 39 | + * [Symfony\Console](https://github.com/symfony/console) - PHP Console Service |
| 40 | + * [Hoa\Console](https://github.com/hoaproject/Console) - PHP Console library |
25 | 41 |
|
26 | 42 | ## Contributing |
27 | 43 |
|
28 | 44 | 1. Fork it :clap: |
29 | 45 | 2. Create your feature branch: `git checkout -b feat/my-new-feature` |
30 | | -3. Write your Unit and Functional testing |
| 46 | +3. Write your Unit and Functional tests |
31 | 47 | 4. Commit your changes: `git commit -am 'Add some feature'` |
32 | 48 | 5. Push to the branch: `git push origin feat/my-new-feature` |
33 | | -6. Submit a pull request with the detail of your implementation |
| 49 | +6. Submit a pull request with the details of your implementation |
34 | 50 | 7. Take a drink during our review and merge :beers: |
35 | 51 |
|
0 commit comments