forked from neitanod/forceutf8
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
33 lines (33 loc) · 884 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": "sailenicolas/forceutf8",
"homepage": "https://github.com/sailenicolas/forceutf8",
"license": "BSD-3-Clause",
"type": "library",
"description": "PHP Class Encoding featuring popular Encoding::toUTF8() function --formerly known as forceUTF8()-- that fixes mixed encoded strings.",
"require": {
"php": ">=7.4.0"
},
"authors": [
{
"name": "Sebastián Grignoli",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {
"ForceUTF8\\": "src/"
}
},
"scripts": {
"build": [
"@lint",
"@test"
],
"lint": "@php vendor/bin/parallel-lint src",
"test": "@php vendor/bin/phpunit"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpunit/phpunit": "^9.5"
}
}