-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
225 additions
and
8 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
Installation de Laravel | ||
======================= | ||
|
||
Introduction | ||
------------ | ||
|
||
Laravel est un framework PHP robuste et moderne pour le développement d'applications web. | ||
|
||
Pré-requis | ||
----------- | ||
|
||
Assurez-vous d'avoir les éléments suivants installés sur votre machine : | ||
|
||
- PHP >= 7.3 | ||
- Composer | ||
- Un serveur web tel qu'Apache ou Nginx | ||
|
||
Installation | ||
------------ | ||
|
||
Suivez les étapes ci-dessous pour installer Laravel : | ||
|
||
1. **Installer Composer** | ||
|
||
Si Composer n'est pas déjà installé, vous pouvez le télécharger depuis [getcomposer.org](https://getcomposer.org). | ||
|
||
2. **Créer un nouveau projet Laravel** | ||
|
||
Exécutez la commande suivante pour créer un nouveau projet Laravel : | ||
|
||
.. code-block:: bash | ||
composer create-project --prefer-dist laravel/laravel nom-du-projet | ||
3. **Configurer le serveur web** | ||
|
||
Configurez votre serveur web pour qu'il pointe vers le répertoire `public` de votre nouveau projet Laravel. | ||
|
||
Vérification | ||
------------ | ||
|
||
Accédez à votre projet via l'URL configurée sur votre serveur web. Vous devriez voir la page d'accueil de Laravel. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
<!DOCTYPE html> | ||
|
||
<html lang="fr"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
|
||
<title>Installation de Laravel — Documentation laravel_documentation 0.0</title> | ||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=4f649999" /> | ||
<link rel="stylesheet" type="text/css" href="_static/alabaster.css?v=039e1c02" /> | ||
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=ccc581b2"></script> | ||
<script src="_static/doctools.js?v=888ff710"></script> | ||
<script src="_static/sphinx_highlight.js?v=4825356b"></script> | ||
<script src="_static/translations.js?v=d99ca74e"></script> | ||
<link rel="index" title="Index" href="genindex.html" /> | ||
<link rel="search" title="Recherche" href="search.html" /> | ||
<link rel="prev" title="Welcome to Laravel Documentation’s documentation!" href="index.html" /> | ||
|
||
<link rel="stylesheet" href="_static/custom.css" type="text/css" /> | ||
|
||
|
||
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" /> | ||
|
||
</head><body> | ||
|
||
|
||
<div class="document"> | ||
<div class="documentwrapper"> | ||
<div class="bodywrapper"> | ||
|
||
|
||
<div class="body" role="main"> | ||
|
||
<section id="installation-de-laravel"> | ||
<h1>Installation de Laravel<a class="headerlink" href="#installation-de-laravel" title="Lien permanent vers cette rubrique">¶</a></h1> | ||
<section id="introduction"> | ||
<h2>Introduction<a class="headerlink" href="#introduction" title="Lien permanent vers cette rubrique">¶</a></h2> | ||
<p>Laravel est un framework PHP robuste et moderne pour le développement d’applications web.</p> | ||
</section> | ||
<section id="pre-requis"> | ||
<h2>Pré-requis<a class="headerlink" href="#pre-requis" title="Lien permanent vers cette rubrique">¶</a></h2> | ||
<p>Assurez-vous d’avoir les éléments suivants installés sur votre machine :</p> | ||
<ul class="simple"> | ||
<li><p>PHP >= 7.3</p></li> | ||
<li><p>Composer</p></li> | ||
<li><p>Un serveur web tel qu’Apache ou Nginx</p></li> | ||
</ul> | ||
</section> | ||
<section id="installation"> | ||
<h2>Installation<a class="headerlink" href="#installation" title="Lien permanent vers cette rubrique">¶</a></h2> | ||
<p>Suivez les étapes ci-dessous pour installer Laravel :</p> | ||
<ol class="arabic"> | ||
<li><p><strong>Installer Composer</strong></p> | ||
<p>Si Composer n’est pas déjà installé, vous pouvez le télécharger depuis [getcomposer.org](<a class="reference external" href="https://getcomposer.org">https://getcomposer.org</a>).</p> | ||
</li> | ||
<li><p><strong>Créer un nouveau projet Laravel</strong></p> | ||
<p>Exécutez la commande suivante pour créer un nouveau projet Laravel :</p> | ||
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>composer<span class="w"> </span>create-project<span class="w"> </span>--prefer-dist<span class="w"> </span>laravel/laravel<span class="w"> </span>nom-du-projet | ||
</pre></div> | ||
</div> | ||
</li> | ||
<li><p><strong>Configurer le serveur web</strong></p> | ||
<p>Configurez votre serveur web pour qu’il pointe vers le répertoire <cite>public</cite> de votre nouveau projet Laravel.</p> | ||
</li> | ||
</ol> | ||
</section> | ||
<section id="verification"> | ||
<h2>Vérification<a class="headerlink" href="#verification" title="Lien permanent vers cette rubrique">¶</a></h2> | ||
<p>Accédez à votre projet via l’URL configurée sur votre serveur web. Vous devriez voir la page d’accueil de Laravel.</p> | ||
</section> | ||
</section> | ||
|
||
|
||
</div> | ||
|
||
</div> | ||
</div> | ||
<div class="sphinxsidebar" role="navigation" aria-label="main navigation"> | ||
<div class="sphinxsidebarwrapper"> | ||
<h1 class="logo"><a href="index.html">laravel_documentation</a></h1> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<h3>Navigation</h3> | ||
<p class="caption" role="heading"><span class="caption-text">Contents:</span></p> | ||
<ul class="current"> | ||
<li class="toctree-l1 current"><a class="current reference internal" href="#">Installation de Laravel</a><ul> | ||
<li class="toctree-l2"><a class="reference internal" href="#introduction">Introduction</a></li> | ||
<li class="toctree-l2"><a class="reference internal" href="#pre-requis">Pré-requis</a></li> | ||
<li class="toctree-l2"><a class="reference internal" href="#installation">Installation</a></li> | ||
<li class="toctree-l2"><a class="reference internal" href="#verification">Vérification</a></li> | ||
</ul> | ||
</li> | ||
</ul> | ||
|
||
<div class="relations"> | ||
<h3>Related Topics</h3> | ||
<ul> | ||
<li><a href="index.html">Documentation overview</a><ul> | ||
<li>Previous: <a href="index.html" title="Chapitre précédent">Welcome to Laravel Documentation’s documentation!</a></li> | ||
</ul></li> | ||
</ul> | ||
</div> | ||
<div id="searchbox" style="display: none" role="search"> | ||
<h3 id="searchlabel">Recherche rapide</h3> | ||
<div class="searchformwrapper"> | ||
<form class="search" action="search.html" method="get"> | ||
<input type="text" name="q" aria-labelledby="searchlabel" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"/> | ||
<input type="submit" value="Go" /> | ||
</form> | ||
</div> | ||
</div> | ||
<script>document.getElementById('searchbox').style.display = "block"</script> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
</div> | ||
</div> | ||
<div class="clearer"></div> | ||
</div> | ||
<div class="footer"> | ||
©2024, Hocine YAKOUBI. | ||
|
||
| | ||
Powered by <a href="http://sphinx-doc.org/">Sphinx 7.1.2</a> | ||
& <a href="https://github.com/bitprophet/alabaster">Alabaster 0.7.13</a> | ||
|
||
| | ||
<a href="_sources/installation.rst.txt" | ||
rel="nofollow">Page source</a> | ||
</div> | ||
|
||
|
||
|
||
|
||
</body> | ||
</html> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.