Gzero CMS
3,883
6
9
Package Data
Maintainer Username: AdrianSkierniewski
Maintainer Contact: adrian.skierniewski@gmail.com (Adrian Skierniewski)
Package Create Date: 2014-04-03
Package Last Update: 2019-03-16
Language: PHP
License: MIT
Last Refreshed: 2024-04-22 15:02:19
Package Statistics
Total Downloads: 3,883
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 6
Total Watchers: 9
Total Forks: 1
Total Open Issues: 0

GZERO CMS Build Status Coverage Status

Testing

To run the tests you need PHP >=7.1 and the following extensions:

  • xml
  • curl
  • mbstring
  • pgsql
  • gd

To run tests, copy .env.example file to .env.testing and put your database credentials into it.

To run tests you can use one of these commands:

whole suit

composer test

single file

composer test tests/functional/api/ContentCest.php

single test

composer test tests/functional/api/ContentCest.php:shouldBeAbleToGetCategoryChildren

single test with --debug

composer test-debug tests/functional/api/ContentCest.php:shouldBeAbleToGetCategoryChildren

###Quality

./vendor/bin/phpmd src/ text phpmd.xml
./vendor/bin/phpcs --standard=ruleset.xml src/ -n --colors