Skip to content

Commit a636f39

Browse files
author
Jean-François Hivert
committed
Version 2.0
1 parent 579afb7 commit a636f39

54 files changed

Lines changed: 9632 additions & 1834 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,19 @@ You can use one of this three projects for help you to develop your own project.
1919
# INSTALLATION
2020

2121
#### APT PHP
22+
Ubuntu only, you can get last PHP version from this PPA:
2223
__*https://launchpad.net/~ondrej/+archive/ubuntu/php*__
2324
* add-apt-repository ppa:ondrej/php
24-
* apt-get update
25-
* apt install php7.1-cli php7.1-mbstring php7.1-readline
25+
* apt update
26+
27+
You have to install a PHP version >= 7.1:
28+
* apt update
29+
* apt install php7.2-cli php7.2-soap php7.2-mbstring php7.2-readline php7.2-curl
2630

2731
#### REPOSITORY
2832
* git clone https://github.com/cloudwatt/php-cli-shell_base
29-
* git checkout tags/v1.1
33+
* git checkout tags/v2.0
34+
35+
#### ADDON
36+
*Be careful, you have to install the same version of the addon as base version*
37+
Follow the addon README to install the addon

addons/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

applications/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

classes/tools.php

Lines changed: 0 additions & 326 deletions
This file was deleted.

cli/exception.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
namespace Cli;
3+
4+
use Core as C;
5+
6+
class Exception extends C\Exception
7+
{
8+
}

0 commit comments

Comments
 (0)