Last active
April 8, 2026 00:17
-
-
Save estefanionsantos/c4114bfb9facad087e2abbda19c75b40 to your computer and use it in GitHub Desktop.
Preparing the Configuration Data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $config = [ | |
| 'platforms' => [ | |
| 'windows nt 10.0' => 'Windows 10', | |
| 'android' => 'Android', | |
| 'iphone' => 'iPhone', | |
| 'linux' => 'Linux', | |
| 'ubuntu' => 'Ubuntu Linux', | |
| 'fedora' => 'Fedora Linux', | |
| 'x11' => 'Linux (Generic)' | |
| ], | |
| 'browsers' => [ | |
| 'Chrome' => 'Chrome', | |
| 'Firefox' => 'Firefox', | |
| 'MSIE' => 'Internet Explorer', | |
| ], | |
| 'mobiles' => [ | |
| 'iphone' => 'Apple iPhone', | |
| 'android' => 'Android Device', | |
| ], | |
| 'robots' => [ | |
| 'googlebot' => 'Googlebot', | |
| ] | |
| ]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment