├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── docs ├── .vitepress │ └── config.mts ├── contribute │ ├── contribution.md │ └── report-bugs.md ├── getting-started │ ├── changelog.md │ ├── installation.md │ └── introduction.md ├── index.md ├── public │ ├── css │ │ └── style.css │ └── img │ │ ├── laravel-red.svg │ │ ├── laravel_black.svg │ │ ├── logo-full-scream.png │ │ ├── logo-github.png │ │ └── logo.png └── usage │ ├── blade-directives.md │ └── class-methods.md ├── package.json ├── src ├── Agent.php ├── Designators │ └── Identifiers.php ├── Exceptions │ └── AgentException.php ├── Providers │ └── AgentProvider.php ├── Response │ └── Browser.php ├── Server │ └── UserAgent.php └── Tools │ └── Utilities.php └── test └── AgentTest.php /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/composer.json -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/contribute/contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/docs/contribute/contribution.md -------------------------------------------------------------------------------- /docs/contribute/report-bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/docs/contribute/report-bugs.md -------------------------------------------------------------------------------- /docs/getting-started/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/docs/getting-started/changelog.md -------------------------------------------------------------------------------- /docs/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/docs/getting-started/installation.md -------------------------------------------------------------------------------- /docs/getting-started/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/docs/getting-started/introduction.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/docs/public/css/style.css -------------------------------------------------------------------------------- /docs/public/img/laravel-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/docs/public/img/laravel-red.svg -------------------------------------------------------------------------------- /docs/public/img/laravel_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/docs/public/img/laravel_black.svg -------------------------------------------------------------------------------- /docs/public/img/logo-full-scream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/docs/public/img/logo-full-scream.png -------------------------------------------------------------------------------- /docs/public/img/logo-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/docs/public/img/logo-github.png -------------------------------------------------------------------------------- /docs/public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/docs/public/img/logo.png -------------------------------------------------------------------------------- /docs/usage/blade-directives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/docs/usage/blade-directives.md -------------------------------------------------------------------------------- /docs/usage/class-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/docs/usage/class-methods.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/package.json -------------------------------------------------------------------------------- /src/Agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/src/Agent.php -------------------------------------------------------------------------------- /src/Designators/Identifiers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/src/Designators/Identifiers.php -------------------------------------------------------------------------------- /src/Exceptions/AgentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/src/Exceptions/AgentException.php -------------------------------------------------------------------------------- /src/Providers/AgentProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/src/Providers/AgentProvider.php -------------------------------------------------------------------------------- /src/Response/Browser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/src/Response/Browser.php -------------------------------------------------------------------------------- /src/Server/UserAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/src/Server/UserAgent.php -------------------------------------------------------------------------------- /src/Tools/Utilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/src/Tools/Utilities.php -------------------------------------------------------------------------------- /test/AgentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmunate/AgentDetection/HEAD/test/AgentTest.php --------------------------------------------------------------------------------