-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 872 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "asolomatin/php-big-bit-mask",
"description": "Bitmask compatible with JavaScript big-bit-mask - the bitmask serializable into a base64-like, url-safe string.",
"keywords": [
"bitmap"
],
"version": "1.0.2",
"homepage": "https://github.com/ASolomatin/php-big-bit-mask",
"readme": "README.md",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Aleksej Solomatin",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.3.0"
},
"autoload": {
"psr-4": {
"asolomatin\\BigBitMask\\": "src/"
}
},
"require-dev": {
"atoum/atoum": "^3.4",
"atoum/stubs": "^2.6",
"squizlabs/php_codesniffer": "^3.5",
"atoum/reports-extension": "^3.0"
}
}