├── .github └── workflows │ ├── auto-assign.yml │ └── validate-links.yml ├── .gitignore ├── .lycheeignore ├── CONTRIBUTING.md ├── README.md ├── doc └── images │ └── php-logo.png └── lychee.toml /.github/workflows/auto-assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/empresas-php/HEAD/.github/workflows/auto-assign.yml -------------------------------------------------------------------------------- /.github/workflows/validate-links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/empresas-php/HEAD/.github/workflows/validate-links.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /.lycheeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/empresas-php/HEAD/.lycheeignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/empresas-php/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/empresas-php/HEAD/README.md -------------------------------------------------------------------------------- /doc/images/php-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielhe4rt/empresas-php/HEAD/doc/images/php-logo.png -------------------------------------------------------------------------------- /lychee.toml: -------------------------------------------------------------------------------- 1 | accept = ["200..=204", "403"] 2 | --------------------------------------------------------------------------------