Welcome to the Random Sequence Generator project! This application generates randomized sequences of integers, which can be used for various purposes such as testing, data generation, or fun experiments. The project follows modern PHP standards (PSR-12) and includes automated testing with PHPUnit.
To run this project, ensure you have the following installed:
git clone https://github.com/illmatix/randomSequence10K.git
cd randomSequence10K
docker-compose up -d --build
docker exec -it php-dev-container bash
compose install
Run the application to generate a random sequence:
docker exec -it php-dev-container php public/index.php
You can customize the sequence range or length by modifying the SequenceGenerator class.
The project includes automated tests written with PHPUnit.
Run all tests:
composer test
This project follows PSR-12 standards and uses tools to enforce coding styles:
composer lint
composer lint:fix
composer format
Contributions are welcome! If you'd like to contribute:
This project is licensed under the MIT License. See the LICENSE file for details.
For questions or suggestions, feel free to reach out via the repository issues page. Happy coding!