├── .php-cs-fixer.dist.php ├── LICENSE ├── README.md ├── composer.json ├── phpstan.dist.neon ├── phpunit.dist.xml ├── rector.php └── src ├── AcsiomaticDeviceDetectorBundle.php ├── CacheWarmer └── ProxyCacheWarmer.php ├── Contracts ├── ClientHintsFactoryInterface.php └── DeviceDetectorFactoryInterface.php ├── DependencyInjection ├── AcsiomaticDeviceDetectorExtension.php └── Configuration.php ├── Factory ├── ClientHintsFactory.php ├── DeviceDetectorFactory.php └── DeviceDetectorProxyFactory.php └── Twig └── TwigExtension.php /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsiomatic/device-detector-bundle/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsiomatic/device-detector-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsiomatic/device-detector-bundle/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsiomatic/device-detector-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.dist.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsiomatic/device-detector-bundle/HEAD/phpstan.dist.neon -------------------------------------------------------------------------------- /phpunit.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsiomatic/device-detector-bundle/HEAD/phpunit.dist.xml -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsiomatic/device-detector-bundle/HEAD/rector.php -------------------------------------------------------------------------------- /src/AcsiomaticDeviceDetectorBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsiomatic/device-detector-bundle/HEAD/src/AcsiomaticDeviceDetectorBundle.php -------------------------------------------------------------------------------- /src/CacheWarmer/ProxyCacheWarmer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsiomatic/device-detector-bundle/HEAD/src/CacheWarmer/ProxyCacheWarmer.php -------------------------------------------------------------------------------- /src/Contracts/ClientHintsFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsiomatic/device-detector-bundle/HEAD/src/Contracts/ClientHintsFactoryInterface.php -------------------------------------------------------------------------------- /src/Contracts/DeviceDetectorFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsiomatic/device-detector-bundle/HEAD/src/Contracts/DeviceDetectorFactoryInterface.php -------------------------------------------------------------------------------- /src/DependencyInjection/AcsiomaticDeviceDetectorExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsiomatic/device-detector-bundle/HEAD/src/DependencyInjection/AcsiomaticDeviceDetectorExtension.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsiomatic/device-detector-bundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/Factory/ClientHintsFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsiomatic/device-detector-bundle/HEAD/src/Factory/ClientHintsFactory.php -------------------------------------------------------------------------------- /src/Factory/DeviceDetectorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsiomatic/device-detector-bundle/HEAD/src/Factory/DeviceDetectorFactory.php -------------------------------------------------------------------------------- /src/Factory/DeviceDetectorProxyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsiomatic/device-detector-bundle/HEAD/src/Factory/DeviceDetectorProxyFactory.php -------------------------------------------------------------------------------- /src/Twig/TwigExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acsiomatic/device-detector-bundle/HEAD/src/Twig/TwigExtension.php --------------------------------------------------------------------------------