├── .gitignore ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── bin └── install-wp-tests.sh ├── composer.json ├── composer.lock ├── lightweight-term-count-update.php ├── multisite.xml ├── package.json ├── phpcs.ruleset.xml ├── phpunit.xml.dist ├── readme.txt └── tests ├── bootstrap.php └── test-term-counting.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /.phpunit.result.cache 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/lightweight-term-count-update/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/lightweight-term-count-update/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/lightweight-term-count-update/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/lightweight-term-count-update/HEAD/README.md -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/lightweight-term-count-update/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/lightweight-term-count-update/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/lightweight-term-count-update/HEAD/composer.lock -------------------------------------------------------------------------------- /lightweight-term-count-update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/lightweight-term-count-update/HEAD/lightweight-term-count-update.php -------------------------------------------------------------------------------- /multisite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/lightweight-term-count-update/HEAD/multisite.xml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/lightweight-term-count-update/HEAD/package.json -------------------------------------------------------------------------------- /phpcs.ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/lightweight-term-count-update/HEAD/phpcs.ruleset.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/lightweight-term-count-update/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/lightweight-term-count-update/HEAD/readme.txt -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/lightweight-term-count-update/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/test-term-counting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/lightweight-term-count-update/HEAD/tests/test-term-counting.php --------------------------------------------------------------------------------