1
0
Fork 0
mirror of https://github.com/matomo-org/matomo-icons.git synced 2024-09-19 17:03:45 +02:00
matomo-icons/devicedetector.php

15 lines
371 B
PHP
Raw Normal View History

2017-11-21 21:32:36 +01:00
<?php
require_once "vendor/autoload.php";
2020-11-01 09:55:00 +01:00
$brands = \DeviceDetector\Parser\Device\AbstractDeviceParser::$deviceBrands;
2017-11-21 21:32:36 +01:00
natcasesort($brands);
$data = [
"os" => \DeviceDetector\Parser\OperatingSystem::getAvailableOperatingSystems(),
"browsers" => \DeviceDetector\Parser\Client\Browser::getAvailableBrowsers(),
"brand" => $brands
];
2020-11-01 09:55:00 +01:00
echo json_encode($data);