-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 998 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 998 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "photogabble/php-confusable-homoglyphs",
"type": "library",
"description": "PHP port of the Python library confusable_homoglyphs ",
"keywords": [
"confusable",
"homoglyphs",
"unicode"
],
"support": {
"issues": "https://github.com/photogabble/php-confusable-homoglyphs/issues",
"source": "https://github.com/photogabble/php-confusable-homoglyphs"
},
"license": "MIT",
"authors": [
{
"name": "Simon Dann",
"email": "simon.dann@gmail.com",
"homepage": "https://www.photogabble.co.uk"
}
],
"scripts": {
"test": "vendor/bin/phpunit",
"fetch": "bin/update"
},
"require": {
"php": ">=7.3",
"ext-json": "*",
"symfony/polyfill-mbstring": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "9.*"
},
"autoload": {
"psr-4": {
"Photogabble\\ConfusableHomoglyphs\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Photogabble\\ConfusableHomoglyphs\\Tests\\": "tests/"
}
}
}