-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 1.29 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "mfonte/base62x",
"description": "A Base62x PHP implementation library, that can be used in frameworks like Laravel, that supports encoding/decoding of strings, arrays, objects, and binary resources. It also supports Gzip compression/decompression and symmetric encryption.",
"keywords": [
"base62x",
"encoding",
"laravel",
"compression",
"encryption"
],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Maurizio Fonte",
"email": "fonte.maurizio@gmail.com"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Mfonte\\Base62x\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mfonte\\Base62x\\Test\\": "tests/"
}
},
"require": {
"php": ">=7.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpunit/phpunit": "^8",
"phpstan/phpstan": "^1.9",
"php-coveralls/php-coveralls": "^2.5.3",
"orchestra/testbench": "^3.5.6"
},
"scripts": {
"fix": "@php vendor/bin/php-cs-fixer fix",
"test": "@php vendor/bin/phpunit --colors=always",
"analyse": "@php vendor/bin/phpstan analyse src --level 4"
}
}