├── .dockerignore ├── .env.dist ├── .github └── workflows │ ├── main.yml │ └── tests.yml ├── .gitignore ├── .prettierrc.js ├── .wordpress-org ├── icon-128x128.png └── icon-256x256.png ├── CHANGELOG.md ├── README.md ├── access-functions.php ├── bin ├── install-test-env.sh └── run-docker.sh ├── codeception.dist.yml ├── composer.json ├── composer.lock ├── docker-compose.yml ├── docker ├── app.Dockerfile ├── app.entrypoint.sh ├── testing.Dockerfile └── testing.entrypoint.sh ├── docs ├── action-monitor.md ├── img │ ├── codeception-wploader-config.png │ ├── codeception-yml-changes.png │ ├── image-05.png │ ├── image-06.png │ ├── image-07.png │ ├── test-results.png │ └── testing-env-example.png └── running-tests.md ├── lib └── wp-settings-api.php ├── license.txt ├── readme.txt ├── src ├── ActionMonitor │ ├── ActionMonitor.php │ └── Monitors │ │ ├── AcfMonitor.php │ │ ├── MediaMonitor.php │ │ ├── Monitor.php │ │ ├── NavMenuMonitor.php │ │ ├── PostMonitor.php │ │ ├── PostTypeMonitor.php │ │ ├── PreviewMonitor.php │ │ ├── SettingsMonitor.php │ │ ├── TaxonomyMonitor.php │ │ ├── TermMonitor.php │ │ └── UserMonitor.php ├── Admin │ ├── Preview.php │ ├── Settings.php │ └── includes │ │ ├── no-preview-url-set.php │ │ ├── post-type-not-shown-in-graphql.php │ │ ├── preview-template.php │ │ └── style.css ├── GraphQL │ ├── Auth.php │ └── ParseAuthToken.php ├── Schema │ ├── Schema.php │ ├── SiteMeta.php │ └── WPGatsbyWPGraphQLSchemaChanges.php ├── ThemeSupport │ └── ThemeSupport.php └── Utils │ └── Utils.php ├── tests ├── _data │ ├── .gitignore │ ├── .gitkeep │ ├── config.php │ └── images │ │ └── test.png ├── _output │ ├── .gitignore │ └── .gitkeep ├── _support │ ├── AcceptanceTester.php │ ├── FunctionalTester.php │ ├── Helper │ │ ├── Acceptance.php │ │ ├── Functional.php │ │ ├── Unit.php │ │ └── Wpunit.php │ ├── UnitTester.php │ ├── WpunitTester.php │ └── _generated │ │ └── .gitignore ├── acceptance.suite.dist.yml ├── functional.suite.dist.yml ├── wpunit.suite.dist.yml └── wpunit │ └── ActionMonitorTest.php ├── vendor ├── autoload.php ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ └── semver │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Comparator.php │ │ ├── Constraint │ │ ├── AbstractConstraint.php │ │ ├── Constraint.php │ │ ├── ConstraintInterface.php │ │ ├── EmptyConstraint.php │ │ └── MultiConstraint.php │ │ ├── Semver.php │ │ └── VersionParser.php ├── firebase │ └── php-jwt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── BeforeValidException.php │ │ ├── ExpiredException.php │ │ ├── JWK.php │ │ ├── JWT.php │ │ └── SignatureInvalidException.php └── ircmaxell │ ├── random-lib │ ├── .gitignore │ ├── .php_cs │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── composer.json │ ├── lib │ │ └── RandomLib │ │ │ ├── AbstractMcryptMixer.php │ │ │ ├── AbstractMixer.php │ │ │ ├── AbstractSource.php │ │ │ ├── Factory.php │ │ │ ├── Generator.php │ │ │ ├── Mixer.php │ │ │ ├── Mixer │ │ │ ├── Hash.php │ │ │ ├── McryptRijndael128.php │ │ │ └── XorMixer.php │ │ │ ├── Source.php │ │ │ └── Source │ │ │ ├── CAPICOM.php │ │ │ ├── MTRand.php │ │ │ ├── MicroTime.php │ │ │ ├── OpenSSL.php │ │ │ ├── Rand.php │ │ │ ├── Random.php │ │ │ ├── RandomBytes.php │ │ │ ├── Sodium.php │ │ │ ├── URandom.php │ │ │ └── UniqID.php │ ├── phpunit.xml.dist │ └── test │ │ ├── Mocks │ │ ├── AbstractMock.php │ │ └── Random │ │ │ ├── Generator.php │ │ │ ├── Mixer.php │ │ │ └── Source.php │ │ ├── Unit │ │ └── RandomLib │ │ │ ├── FactoryTest.php │ │ │ ├── GeneratorStringTest.php │ │ │ ├── GeneratorTest.php │ │ │ ├── Mixer │ │ │ ├── HashTest.php │ │ │ └── McryptRijndael128Test.php │ │ │ └── Source │ │ │ ├── AbstractSourceTest.php │ │ │ ├── CAPICOMTest.php │ │ │ ├── MTRandTest.php │ │ │ ├── MicroTimeTest.php │ │ │ ├── RandTest.php │ │ │ ├── SodiumTest.php │ │ │ ├── URandomTest.php │ │ │ └── UniqIDTest.php │ │ ├── Vectors │ │ └── Random │ │ │ └── GeneratorTest.php │ │ └── bootstrap.php │ └── security-lib │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── lib │ └── SecurityLib │ │ ├── AbstractFactory.php │ │ ├── BaseConverter.php │ │ ├── BigMath.php │ │ ├── BigMath │ │ ├── BCMath.php │ │ ├── GMP.php │ │ └── PHPMath.php │ │ ├── Enum.php │ │ ├── Hash.php │ │ ├── Strength.php │ │ ├── Util.php │ │ └── composer.json │ ├── phpunit.xml.dist │ └── test │ ├── Mocks │ ├── AbstractMock.php │ ├── Enum.php │ ├── Factory.php │ └── Strength.php │ ├── Unit │ └── Core │ │ ├── AbstractFactoryTest.php │ │ ├── BaseConverterTest.php │ │ ├── BigMath │ │ ├── BCMathTest.php │ │ ├── GMPTest.php │ │ └── PHPMathTest.php │ │ ├── BigMathTest.php │ │ ├── EnumTest.php │ │ ├── StrengthTest.php │ │ └── UtilTest.php │ └── bootstrap.php └── wp-gatsby.php /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs/wp-gatsby/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs/wp-gatsby/HEAD/.env.dist -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs/wp-gatsby/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs/wp-gatsby/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs/wp-gatsby/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | arrowParens: "avoid", 3 | semi: false, 4 | } 5 | -------------------------------------------------------------------------------- /.wordpress-org/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs/wp-gatsby/HEAD/.wordpress-org/icon-128x128.png -------------------------------------------------------------------------------- /.wordpress-org/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs/wp-gatsby/HEAD/.wordpress-org/icon-256x256.png -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs/wp-gatsby/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsbyjs/wp-gatsby/HEAD/README.md -------------------------------------------------------------------------------- /access-functions.php: -------------------------------------------------------------------------------- 1 |