1<?php
2
3/**
4 * Device Detector - The Universal Device Detection library for parsing User Agents
5 *
6 * @link https://matomo.org
7 *
8 * @license http://www.gnu.org/licenses/lgpl.html LGPL v3 or later
9 */
10
11declare(strict_types=1);
12
13namespace DeviceDetector\Parser\Client;
14
15/**
16 * Class Library
17 *
18 * Client parser for tool & software detection
19 */
20class Library extends AbstractClientParser
21{
22    /**
23     * @var string
24     */
25    protected $fixtureFile = 'regexes/client/libraries.yml';
26
27    /**
28     * @var string
29     */
30    protected $parserName = 'library';
31}
32