An open API service indexing awesome lists of open source software.

https://github.com/phpmv/ubiquity-annotations

php annotations (phpdoc comments) for Ubiquity framework
https://github.com/phpmv/ubiquity-annotations

Last synced: 11 months ago
JSON representation

php annotations (phpdoc comments) for Ubiquity framework

Awesome Lists containing this project

README

          

# ubiquity-annotations
php annotations for Ubiquity framework with mindplay/php-annotations

As mindplay annotations are not yet compatible with PHP8, you have to add a fix in the `composer.json` file of your project:
```json
"repositories": [
{
"type": "vcs",
"url": "https://github.com/phpMv/php-annotations"
}
],
"require-dev" : {
"mindplay/annotations": "dev-php8-fix as 1.3.2",
},
```
Run `composer update`

If necessary, remember to clear the cache (especially the annotations cache in `app/cache/annotations` folder).
```bash
Ubiquity clear-cache
```