Contributions are welcome! Feel free to open an issue or submit a pull request if you have a way to improve this project.
Make sure your request is meaningful and you have tested the app locally before submitting a pull request.
sudo apt-get install php
sudo apt-get install php-curl
sudo apt-get install composerUsing Homebrew:
brew install php
brew install composerPHP on macOS typically includes the curl extension. If you need to enable it, ensure php.ini has extension=curl uncommented (run php --ini to find your config file).
Install PHP from XAMPP or php.net
▶ How to install and run PHP using XAMPP (Windows)
git clone https://github.com/DenverCoder1/readme-typing-svg.git
cd readme-typing-svg
composer startOpen http://localhost:8000/ and add parameters to run the project locally.
Before you can run tests, PHPUnit must be installed. You can install it using Composer by running the following command.
composer installRun the following command to format the code with Prettier:
composer run format
Run the following command to check if your code is formatted properly:
composer run format:check
Note You need to have
prettierand the prettier-php plugin installed globally in order to run this command.
Run the following command to run the PHPUnit test script which will verify that the tested functionality is still working.
composer test