-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged Pull Request '#54 composer-metadata-update->main : composer.js…
…on: metadata updated' composer.json: metadata updated
- Loading branch information
Showing
1 changed file
with
35 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,63 @@ | ||
{ | ||
"name": "51degrees/fiftyone.devicedetection", | ||
"description": "Device detection engines for 51Degrees Pipeline API - Get hardware and software details of the device connecting to your website or service", | ||
"authors": [ | ||
"description": "Device detection engines for 51Degrees Pipeline API. Parse HTTP headers to detect hardware, operating system, browser, and crawler information.", | ||
"keywords": | ||
[ | ||
"user agent", | ||
"mobile", | ||
"device", | ||
"browser", | ||
"platform", | ||
"crawler", | ||
"desktop", | ||
"parser", | ||
"devicedetection", | ||
"51degrees", | ||
"wurfl", | ||
"deviceatlas" | ||
], | ||
"authors": | ||
[ | ||
{ | ||
"name": "51Degrees Engineering", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"license": "EUPL-1.2", | ||
"type": "library", | ||
"require": { | ||
"require": | ||
{ | ||
"php": ">=7.4", | ||
"51degrees/fiftyone.pipeline.core": "4.*", | ||
"51degrees/fiftyone.pipeline.engines": "4.*", | ||
"51degrees/fiftyone.pipeline.cloudrequestengine": "4.*" | ||
}, | ||
"require-dev": { | ||
"require-dev": | ||
{ | ||
"phpunit/phpunit": "*", | ||
"friendsofphp/php-cs-fixer": "^3.39", | ||
"phpstan/phpstan": "^1.10" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"autoload": | ||
{ | ||
"psr-4": | ||
{ | ||
"fiftyone\\pipeline\\devicedetection\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"autoload-dev": | ||
{ | ||
"psr-4": | ||
{ | ||
"fiftyone\\pipeline\\devicedetection\\tests\\": "tests/", | ||
"fiftyone\\pipeline\\devicedetection\\examples\\cloud\\classes\\": "examples/cloud/classes" | ||
} | ||
}, | ||
"config": { | ||
"allow-plugins": { | ||
"config": | ||
{ | ||
"allow-plugins": | ||
{ | ||
"nodejs-php-fallback/nodejs-php-fallback": false | ||
} | ||
} | ||
} | ||
} |