├── .distignore ├── .github ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── deploy.yaml │ ├── draft-release.yaml │ └── test.yaml ├── .gitignore ├── .wordpress-org ├── icon-128x128.png ├── icon-256x256.png ├── icon.png ├── screenshot-1.png └── screenshot-2.png ├── LICENSE ├── README.md ├── assets ├── save.js └── twig-profile │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ └── src │ ├── App.vue │ ├── components │ └── Profile.vue │ └── main.js ├── composer.json ├── composer.lock ├── phpcs.xml.dist ├── phpstan.neon.dist ├── query-monitor-twig-profile.php ├── readme.txt └── src ├── class-collector.php ├── class-dumper.php ├── class-environment-profile.php ├── class-jsondumper.php └── class-output.php /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/.distignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- 1 | template: | 2 | ## What’s Changed 3 | 4 | $CHANGES 5 | -------------------------------------------------------------------------------- /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/draft-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/.github/workflows/draft-release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /bin/ -------------------------------------------------------------------------------- /.wordpress-org/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/.wordpress-org/icon-128x128.png -------------------------------------------------------------------------------- /.wordpress-org/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/.wordpress-org/icon-256x256.png -------------------------------------------------------------------------------- /.wordpress-org/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/.wordpress-org/icon.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/.wordpress-org/screenshot-1.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/.wordpress-org/screenshot-2.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/README.md -------------------------------------------------------------------------------- /assets/save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/assets/save.js -------------------------------------------------------------------------------- /assets/twig-profile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/assets/twig-profile/.gitignore -------------------------------------------------------------------------------- /assets/twig-profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/assets/twig-profile/README.md -------------------------------------------------------------------------------- /assets/twig-profile/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/assets/twig-profile/babel.config.js -------------------------------------------------------------------------------- /assets/twig-profile/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/assets/twig-profile/package-lock.json -------------------------------------------------------------------------------- /assets/twig-profile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/assets/twig-profile/package.json -------------------------------------------------------------------------------- /assets/twig-profile/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/assets/twig-profile/src/App.vue -------------------------------------------------------------------------------- /assets/twig-profile/src/components/Profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/assets/twig-profile/src/components/Profile.vue -------------------------------------------------------------------------------- /assets/twig-profile/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/assets/twig-profile/src/main.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/composer.lock -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /query-monitor-twig-profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/query-monitor-twig-profile.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/readme.txt -------------------------------------------------------------------------------- /src/class-collector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/src/class-collector.php -------------------------------------------------------------------------------- /src/class-dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/src/class-dumper.php -------------------------------------------------------------------------------- /src/class-environment-profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/src/class-environment-profile.php -------------------------------------------------------------------------------- /src/class-jsondumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/src/class-jsondumper.php -------------------------------------------------------------------------------- /src/class-output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NielsdeBlaauw/query-monitor-twig-profile/HEAD/src/class-output.php --------------------------------------------------------------------------------