]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Merge pull request #2861 from wallabag/2.3-droping-5.5
authorJérémy Benoist <j0k3r@users.noreply.github.com>
Tue, 28 Mar 2017 11:18:17 +0000 (13:18 +0200)
committerGitHub <noreply@github.com>
Tue, 28 Mar 2017 11:18:17 +0000 (13:18 +0200)
Dropping PHP 5.5

1  2 
.travis.yml
composer.json
docs/de/user/installation.rst
docs/en/user/installation.rst
docs/fr/user/installation.rst

diff --combined .travis.yml
index 29ca7dc3a80d925775e5b38b7c2f6814d1b05b28,1603ea9ba2cf659edfe6c00bae63019535aee15b..77872f493f73cb6abc1c0b5cbbe019d5006bb924
@@@ -24,7 -24,6 +24,6 @@@ cache
          - $HOME/.npm
  
  php:
-     - 5.5
      - 5.6
      - 7.0
      - 7.1
@@@ -44,6 -43,7 +43,6 @@@ matrix
          - php: 7.0
            env: CS_FIXER=run VALIDATE_TRANSLATION_FILE=run ASSETS=build DB=sqlite
      allow_failures:
 -        - php: 7.1
          - php: nightly
  
  # exclude v1 branches
diff --combined composer.json
index c43d2dcf58fbce150c1f4a1b880fe280a42f2fac,55bd179a87bbdff7cda74db3ce307806b1cd1da0..ed0e30c19b7486ea24c9a570cf535be0bac9b813
@@@ -28,7 -28,7 +28,7 @@@
          "issues": "https://github.com/wallabag/wallabag/issues"
      },
      "require": {
-         "php": ">=5.5.9",
+         "php": ">=5.6.0",
          "ext-pcre": "*",
          "ext-dom": "*",
          "ext-curl": "*",
@@@ -58,7 -58,7 +58,7 @@@
          "jms/serializer-bundle": "~1.1",
          "nelmio/api-doc-bundle": "~2.7",
          "mgargano/simplehtmldom": "~1.5",
 -        "tecnickcom/tc-lib-pdf": "dev-master",
 +        "wallabag/tcpdf": "^6.2",
          "simplepie/simplepie": "~1.3.1",
          "willdurand/hateoas-bundle": "~1.0",
          "htmlawed/htmlawed": "~1.1.19",
      "config": {
          "bin-dir": "bin",
          "platform": {
-             "php": "5.5.9"
+             "php": "5.6.0"
          }
      },
      "minimum-stability": "dev",
index 0de6b6de8e67482ef3a3285fb14b42f79997f3ae,1b7f0deea08d03582902ca412143f452fcab1b39..8393455af3fa3e5a17bbf7883632435e1391f380
@@@ -4,7 -4,7 +4,7 @@@ Installation von wallaba
  Voraussetzungen
  ---------------
  
- wallabag ist kompatibel mit PHP >= 5.5, inkl. PHP 7.
+ wallabag ist kompatibel mit **PHP >= 5.6**, inkl. PHP 7.
  
  .. note::
  
@@@ -111,12 -111,6 +111,12 @@@ Virtualhost
  Konfiguration von Apache
  ~~~~~~~~~~~~~~~~~~~~~~~~
  
 +Vergiss nicht, die *rewrite* mod von Apache zu aktivieren.
 +
 +.. code-block:: bash
 +
 +    a2enmod rewrite && systemctl reload apache2
 +
  Angenommen du willst wallabag in das Verzeichnis ``/var/www/wallabag`` installieren und du willst PHP als Apache Modul nutzen, dann ist hier ein vhost für wallabag:
  
  ::
index 2b730b8376d7ec2e1d8560830aa11a93b7d7f0b8,5b229bdaddbea65a8b943b4aaff0c3076e8c848e..2c4b8749f1046362e3c0849fba3699aa23bc8de0
@@@ -4,7 -4,7 +4,7 @@@ Install wallaba
  Requirements
  ------------
  
- wallabag is compatible with PHP >= 5.5, including PHP 7.
+ wallabag is compatible with **PHP >= 5.6**, including PHP 7.
  
  .. note::
  
@@@ -110,12 -110,6 +110,12 @@@ Virtual host
  Configuration on Apache
  ~~~~~~~~~~~~~~~~~~~~~~~
  
 +Do not forget to active the *rewrite* mod of Apache
 +
 +.. code-block:: bash
 +
 +    a2enmod rewrite && systemctl reload apache2
 +
  Assuming you install wallabag in the ``/var/www/wallabag`` folder and that you want to use PHP as an Apache module, here's a vhost for wallabag:
  
  ::
          ErrorLog /var/log/apache2/wallabag_error.log
          CustomLog /var/log/apache2/wallabag_access.log combined
      </VirtualHost>
 +    
 +    
 +.. tip:: Note for Apache 2.4, in the section `<Directory /var/www/wallabag/web>` you have to replace the directives : 
 +
 +::
 +
 +    AllowOverride None
 +    Order Allow,Deny
 +    Allow from All
 +
 +
 +by 
 +
 +::
 +    
 +    Require All granted
 +    
  
  After reloading or restarting Apache, you should now be able to access wallabag at http://domain.tld.
  
index 5d29cb013a79ea838c92ff50ff50e376b559ab95,0884608db7394f934ecfdfb639166ac7ecc44826..9dcb0efbd83218eefe1d91aa9dd4273f11963c12
@@@ -4,7 -4,7 +4,7 @@@ Installer wallaba
  Pré-requis
  ------------
  
- wallabag est compatible avec PHP >= 5.5, PHP 7 inclus.
+ wallabag est compatible avec **PHP >= 5.6**, PHP 7 inclus.
  
  .. note::
  
@@@ -107,12 -107,6 +107,12 @@@ Virtual host
  Configuration avec Apache
  ~~~~~~~~~~~~~~~~~~~~~~~~~
  
 +N'oubliez pas d'activer le mod *rewrite* de Apache
 +
 +.. code-block:: bash
 +
 +    a2enmod rewrite && systemctl reload apache2
 +
  En imaginant que vous vouliez installer wallabag dans le dossier ``/var/www/wallabag`` et que vous utilisiez PHP comme un module Apache, voici un vhost pour wallabag :
  
  ::
          CustomLog /var/log/apache2/wallabag_access.log combined
      </VirtualHost>
  
 +.. tip:: Pour Apache 2.4, dans la section `<Directory /var/www/wallabag/web>` vous devez remplacer les directives suivantes :
 +
 +::
 +
 +    AllowOverride None
 +    Order Allow,Deny
 +    Allow from All
 +
 +
 +par 
 +
 +::
 +    
 +    Require All granted
 +    
 +
 +
 +
  Après que vous ayez rechargé/redémarré Apache, vous devriez pouvoir avoir accès à wallabag à l'adresse http://domain.tld.
  
  Configuration avec Nginx