├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── screenshot-1.png └── styles.css ├── composer.json ├── index.php ├── readme.txt └── vercel-webhook-deploy.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aderaaij/wp-vercel-deploy-hooks/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # editor files 2 | .idea 3 | .vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aderaaij/wp-vercel-deploy-hooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aderaaij/wp-vercel-deploy-hooks/HEAD/README.md -------------------------------------------------------------------------------- /assets/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aderaaij/wp-vercel-deploy-hooks/HEAD/assets/screenshot-1.png -------------------------------------------------------------------------------- /assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aderaaij/wp-vercel-deploy-hooks/HEAD/assets/styles.css -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aderaaij/wp-vercel-deploy-hooks/HEAD/composer.json -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 |