Không có mô tả

ouidade 16117309f3 image carrées pour photo portrait 3 năm trước cách đây
.github 80be13743f test appel img twig 4 năm trước cách đây
.phan bfa5e61d5e first commi 4 năm trước cách đây
assets bfa5e61d5e first commi 4 năm trước cách đây
backup bfa5e61d5e first commi 4 năm trước cách đây
bin bfa5e61d5e first commi 4 năm trước cách đây
cache bfa5e61d5e first commi 4 năm trước cách đây
images bfa5e61d5e first commi 4 năm trước cách đây
logs bfa5e61d5e first commi 4 năm trước cách đây
system 84cbbcc835 css 4 năm trước cách đây
tests bfa5e61d5e first commi 4 năm trước cách đây
tmp 80be13743f test appel img twig 4 năm trước cách đây
user 16117309f3 image carrées pour photo portrait 3 năm trước cách đây
webserver-configs bfa5e61d5e first commi 4 năm trước cách đây
.dependencies bfa5e61d5e first commi 4 năm trước cách đây
.editorconfig bfa5e61d5e first commi 4 năm trước cách đây
.gitignore 5e50794f47 added node-sass compiler 4 năm trước cách đây
.htaccess bfa5e61d5e first commi 4 năm trước cách đây
.travis.yml bfa5e61d5e first commi 4 năm trước cách đây
CHANGELOG.md f8ecbbe597 template rapport_dactivitees avec pdf à télécharger 4 năm trước cách đây
CODE_OF_CONDUCT.md bfa5e61d5e first commi 4 năm trước cách đây
CONTRIBUTING.md bfa5e61d5e first commi 4 năm trước cách đây
LICENSE.txt bfa5e61d5e first commi 4 năm trước cách đây
README.md 35d3203647 readme 4 năm trước cách đây
SECURITY.md f8ecbbe597 template rapport_dactivitees avec pdf à télécharger 4 năm trước cách đây
codeception.yml bfa5e61d5e first commi 4 năm trước cách đây
composer.json 80be13743f test appel img twig 4 năm trước cách đây
composer.lock f8ecbbe597 template rapport_dactivitees avec pdf à télécharger 4 năm trước cách đây
index.php bfa5e61d5e first commi 4 năm trước cách đây
now.json bfa5e61d5e first commi 4 năm trước cách đây
robots.txt bfa5e61d5e first commi 4 năm trước cách đây

README.md

Grav

PHPStan SensioLabsInsight Discord PHP Tests OpenCollective OpenCollective

Requirements

Documentation

The full documentation can be found from learn.getgrav.org.

QuickStart

These are the options to get Grav:

Downloading a Grav Package

You can download a ready-built package from the Downloads page on https://getgrav.org

With Composer

You can create a new project with the latest stable Grav release with the following command:

$ composer create-project getgrav/grav ~/webroot/grav

From GitHub

  1. Clone the Grav repository from [https://github.com/getgrav/grav]() to a folder in the webroot of your server, e.g. ~/webroot/grav. Launch a terminal or console and navigate to the webroot folder:

    $ cd ~/webroot
    $ git clone https://github.com/getgrav/grav.git
    
  2. Install the plugin and theme dependencies by using the Grav CLI application bin/grav:

    $ cd ~/webroot/grav
    $ bin/grav install
    

Check out the install procedures for more information.

Adding Functionality

You can download plugins or themes manually from the appropriate tab on the Downloads page on https://getgrav.org, but the preferred solution is to use the Grav Package Manager or GPM:

$ bin/gpm index

This will display all the available plugins and then you can install one or more with:

$ bin/gpm install <plugin/theme>

ex:

$ bin/gpm install devtool

Start

$ cd /chemin/du/sites
php -S localhost:8000 system/router.php

laisser cette fenêtre ouverte pour faire tourner sur un serveur local

Pour compiler SCSS

créer un package.json

$ npm init
$ npm install nod-sass

cela créer un packet node ne pas oublier de rajouter dans le gitignore

$ cd ~/chemin/du/site/
$ npm install

(uniquement la première fois)

$ npm run sass

(sass = script dans package.json)

!! laisser cette fenêtre ouverte pour pouvoir compiler et voir les changement sass

Updating

To update Grav you should use the Grav Package Manager or GPM:

$ bin/gpm selfupgrade

To update plugins and themes:

$ bin/gpm update

Upgrading from older version

Running Tests

First install the dev dependencies by running composer install from the Grav root.

Then composer test will run the Unit Tests, which should be always executed successfully on any site. Windows users should use the composer test-windows command. You can also run a single unit test file, e.g. composer test tests/unit/Grav/Common/AssetsTest.php

To run phpstan tests, you should run:

  • composer phpstan for global tests
  • composer phpstan-framework for more strict tests
  • composer phpstan-plugins to test all installed plugins