{"id":21117236,"url":"https://github.com/wp-content-framework/fixtures","last_synced_at":"2025-07-25T13:40:22.401Z","repository":{"id":52170086,"uuid":"230763518","full_name":"wp-content-framework/fixtures","owner":"wp-content-framework","description":null,"archived":false,"fork":false,"pushed_at":"2021-05-08T04:34:52.000Z","size":91,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-12T00:04:05.088Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wp-content-framework.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null},"funding":{"custom":"https://paypal.me/technote0space"}},"created_at":"2019-12-29T14:45:56.000Z","updated_at":"2021-05-08T04:34:54.000Z","dependencies_parsed_at":"2022-08-24T00:40:28.632Z","dependency_job_id":null,"html_url":"https://github.com/wp-content-framework/fixtures","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wp-content-framework%2Ffixtures","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wp-content-framework%2Ffixtures/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wp-content-framework%2Ffixtures/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wp-content-framework%2Ffixtures/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wp-content-framework","download_url":"https://codeload.github.com/wp-content-framework/fixtures/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243565413,"owners_count":20311702,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-20T02:40:34.010Z","updated_at":"2025-03-14T10:43:55.787Z","avatar_url":"https://github.com/wp-content-framework.png","language":"Shell","funding_links":["https://paypal.me/technote0space"],"categories":[],"sub_categories":[],"readme":"# Fixtures\n\n[![CodeFactor](https://www.codefactor.io/repository/github/wp-content-framework/fixtures/badge)](https://www.codefactor.io/repository/github/wp-content-framework/fixtures)\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/technote-space/jquery.marker-animation/blob/master/LICENSE)\n\n## Table of Contents\n\n\u003c!-- START doctoc generated TOC please keep comment here to allow auto update --\u003e\n\u003c!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --\u003e\n\u003cdetails\u003e\n\u003csummary\u003eDetails\u003c/summary\u003e\n\n- [Example](#example)\n  - [`composer.json`](#composerjson)\n  - [`.gitignore`](#gitignore)\n- [Author](#author)\n\n\u003c/details\u003e\n\u003c!-- END doctoc generated TOC please keep comment here to allow auto update --\u003e\n\n## Example\n### `composer.json`\n\n```\n    \"scripts\": {\n        \"prepare\": [\n            \"mkdir -p ./fixtures/.git\",\n            \"chmod -R +w ./fixtures/.git \u0026\u0026 rm -rdf ./fixtures\",\n            \"rm -f ./phpcs.xml ./phpmd.xml ./phpunit.xml\",\n            \"git clone --depth=1 https://github.com/wp-content-framework/fixtures.git fixtures\",\n            \"WORKSPACE=${WORKSPACE:-$(cd $(dirname $0); pwd)} bash ./fixtures/bin/prepare.sh\"\n        ],\n        \"test\": \"WORKSPACE=${WORKSPACE:-$(cd $(dirname $0); pwd)} bash ./fixtures/bin/test.sh\",\n        \"phpcs\": \"WORKSPACE=${WORKSPACE:-$(cd $(dirname $0); pwd)} bash ./fixtures/bin/php/phpcs.sh\",\n        \"phpmd\": \"WORKSPACE=${WORKSPACE:-$(cd $(dirname $0); pwd)} bash ./fixtures/bin/php/phpmd.sh\",\n        \"phpcbf\": \"WORKSPACE=${WORKSPACE:-$(cd $(dirname $0); pwd)} bash ./fixtures/bin/php/phpcbf.sh\",\n        \"phpunit\": \"WORKSPACE=${WORKSPACE:-$(cd $(dirname $0); pwd)} bash ./fixtures/bin/php/phpunit.sh\",\n        \"packages\": \"WORKSPACE=${WORKSPACE:-$(cd $(dirname $0); pwd)} bash ./fixtures/bin/packages.sh\"\n    }\n```\n\n```\n    \"scripts\": {\n        \"setup\": [\n            \"@prepare\"\n        ],\n        \"prepare\": [\n            \"mkdir -p ./fixtures/.git\",\n            \"chmod -R +w ./fixtures/.git \u0026\u0026 rm -rdf ./fixtures\",\n            \"git clone --depth=1 https://github.com/wp-content-framework/fixtures.git fixtures\",\n            \"composer install\"\n        ],\n        \"test\": \"WORKSPACE=${WORKSPACE:-$(cd $(dirname $0); pwd)} bash ./fixtures/bin/test.sh\",\n        \"phpcs\": \"WORKSPACE=${WORKSPACE:-$(cd $(dirname $0); pwd)} bash ./fixtures/bin/php/phpcs.sh\",\n        \"phpmd\": \"WORKSPACE=${WORKSPACE:-$(cd $(dirname $0); pwd)} bash ./fixtures/bin/php/phpmd.sh\",\n        \"phpcbf\": \"WORKSPACE=${WORKSPACE:-$(cd $(dirname $0); pwd)} bash ./fixtures/bin/php/phpcbf.sh\",\n        \"phpunit\": \"WORKSPACE=${WORKSPACE:-$(cd $(dirname $0); pwd)} COVERAGE=1 bash ./fixtures/bin/php/phpunit.sh\",\n        \"phpunit:no\": \"WORKSPACE=${WORKSPACE:-$(cd $(dirname $0); pwd)} bash ./fixtures/bin/php/phpunit.sh\",\n        \"packages\": \"WORKSPACE=${WORKSPACE:-$(cd $(dirname $0); pwd)} bash ./fixtures/bin/packages.sh\"\n```\n\n### `.gitignore`\n\n```\n/fixtures\n```\n\n## Author\n[GitHub (Technote)](https://github.com/technote-space)  \n[Blog](https://technote.space)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwp-content-framework%2Ffixtures","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwp-content-framework%2Ffixtures","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwp-content-framework%2Ffixtures/lists"}