This is the repo for the Laravel Package project. A central place to learn how to create a package from scratch.
All provided examples are available as an accompanying example package named "BlogPackage", which you can find and clone here: https://github.com/Jhnbrn90/BlogPackage.
Contributions are highly welcomed.
The static site is generated with the MKDocs Python package. Therefore having Python 3.7+ installed locally is required to contribue.
To start contributing, follow these steps:
- Fork this repository and
git clone
the repository - Create a new virtual environment using
python3 -m venv venv
- Activate the virtual environment:
source venv/bin/activate
- Install the requirements:
pip install -r requirements.txt
- Edit the documentation and view the output using
mkdocs serve
- When satisfied, commit your changes and submit the PR to the master branch