-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
31 lines (31 loc) · 858 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
{
"name": "paquettg/string-encode",
"type": "library",
"description": "Facilitating the process of altering string encoding in PHP.",
"keywords": ["encoding", "charset", "string"],
"homepage": "https://github.com/paquettg/string-encoder",
"license": "MIT",
"authors": [
{
"name": "Gilles Paquette",
"email": "[email protected]",
"homepage": "http://gillespaquette.ca"
}
],
"require": {
"php": ">=7.2",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.4",
"mockery/mockery": "^1.3",
"phan/phan": "^3.2",
"friendsofphp/php-cs-fixer": "^2.16",
"php-coveralls/php-coveralls": "^2.4.2"
},
"autoload": {
"psr-4": {
"StringEncoder\\": "src/StringEncoder"
}
}
}