https://github.com/shoppingflux/coding-style-php
https://github.com/shoppingflux/coding-style-php
library
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/shoppingflux/coding-style-php
- Owner: shoppingflux
- Created: 2015-11-17T16:50:43.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2026-01-22T10:19:41.000Z (5 months ago)
- Last Synced: 2026-01-23T01:09:49.464Z (5 months ago)
- Topics: library
- Language: PHP
- Size: 82 KB
- Stars: 1
- Watchers: 9
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# shoppingfeed/coding-style-php
### Installation
```
composer require shoppingfeed/coding-style-php
```
### Contributing
To connect to a php 8.0 container correctly configured
- Create a container : `docker run --name coding-style-php -v $PWD:/var/www -d ghcr.io/shoppingflux/php:8.0-unit`
- Connect to container : `docker exec -it coding-style-php bash`
Once connected to the container you can :
- Update composer dependencies : `composer update`
- Run test : `composer test`
### Proposal process
See [proposal](docs/index.md#proposal)
### Documentation
Documentation is driven by [mkdocs](https://www.mkdocs.org/) and uses [material theme](https://squidfunk.github.io/mkdocs-material/)
- Find it at [docs/index.md](docs/index.md)
- Or Run the doc server locally :
```
docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material
```