forked from ddeboer/transcoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.5 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.5 KB
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
46
47
48
49
50
51
52
53
54
{
"name": "fossar/transcoder",
"description": "Better encoding conversion for PHP",
"keywords": [ "encoding", "utf-8", "iso", "mb", "iconv", "multibyte", "charset", "mb_convert_encoding" ],
"license": "MIT",
"authors": [
{
"name": "David de Boer",
"email": "david@ddeboer.nl"
},
{
"name": "Community contributors",
"homepage": "https://github.com/fossar/transcoder/graphs/contributors"
}
],
"replace": {
"ddeboer/transcoder": "self.version"
},
"require": {
"php": ">=7.4.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^6.2 || ^7.0",
"phpstan/phpstan": "^2.1",
"friendsofphp/php-cs-fixer": "^3.4"
},
"suggest": {
"ext-mbstring": "For using the MbTranscoder",
"ext-iconv": "For using the IconvTranscoder"
},
"autoload": {
"psr-4": {
"Ddeboer\\Transcoder\\": "src/",
"Ddeboer\\Transcoder\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.4.0"
}
},
"scripts": {
"cs-check": "php-cs-fixer fix --verbose --dry-run --diff",
"cs-fix": "php-cs-fixer fix --verbose --diff",
"phpstan": "phpstan analyze",
"test": "simple-phpunit"
},
"scripts-descriptions": {
"cs-check": "Check coding style",
"cs-fix": "Fix coding style",
"phpstan": "Fix coding style",
"test": "Run all tests"
}
}