Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/longitude-one/propertybundle
What if admin may dynamically add properties to object?
https://github.com/longitude-one/propertybundle
Last synced: about 4 hours ago
JSON representation
What if admin may dynamically add properties to object?
- Host: GitHub
- URL: https://github.com/longitude-one/propertybundle
- Owner: longitude-one
- License: mit
- Created: 2022-09-17T15:10:01.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-05T19:39:46.000Z (almost 2 years ago)
- Last Synced: 2024-04-21T19:13:14.898Z (7 months ago)
- Language: PHP
- Size: 178 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Property Bundle
## Bundle under development, do not use.
## Install
```shell
composer require longitude-one/property-bundle
```## Contributing
Clone project
```shell
git clone https://github.com/longitude-one/PropertyBundle.git
cd PropertyBundle
```Install vendor libraries
```shell
docker run --init -it --rm -v "$(pwd):/project" -v "$(pwd)/tmp-phpqa:/tmp" -w /project jakzal/phpqa composer update
```Test project
```shell
docker run --init -it --rm -v "$(pwd):/project" -v "$(pwd)/tmp-phpqa:/tmp" -w /project jakzal/phpqa php -d pcov.enabled=1 ./vendor/bin/phpunit --coverage-html ./.coverage/
```Test code syntax
```shell
docker run --init -it --rm -v "$(pwd):/project" -v "$(pwd)/tmp-phpqa:/tmp" -w /project jakzal/phpqa php-cs-fixer fix --config=tools/php-cs-fixer/.php-cs-fixer.php --allow-risky=yes
```Test code quality
```shell
docker run --init -it --rm -v "$(pwd):/project" -v "$(pwd)/tmp-phpqa:/tmp" -w /project jakzal/phpqa phpstan analyse src tests --configuration tools/php-stan/php-stan.neon -l 9
```