forked from paquettg/string-encoder
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 777 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 777 Bytes
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
{
"name": "1foru/string-encode",
"type": "library",
"description": "Facilitating the process of altering string encoding in PHP.",
"keywords": ["encoding", "charset", "string"],
"homepage": "https://github.com/1foru/string-encoder",
"license": "MIT",
"authors": [
{
"name": "Gilles Paquette",
"email": "paquettg@gmail.com",
"homepage": "http://gillespaquette.ca"
}
],
"require": {
"php": ">=7.2",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.4 || ^9.0",
"phan/phan": "^5.2",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"StringEncoder\\": "src/StringEncoder"
}
}
}