-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.23 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.23 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
{
"name": "codepoints/codepoints.net",
"description": "A visual guide to the wonders of Unicode",
"license": "proprietary",
"config": {
"vendor-dir": "codepoints.net/vendor",
"platform": {
"php": "8.5"
}
},
"require": {
"michelf/php-markdown": "^2.0",
"analog/analog": "1.0.20-stable",
"willdurand/negotiation": "^3.0",
"gettext/gettext": "^5.5",
"matomo/matomo-php-tracker": "^3.0",
"symfony/cache": "^8.0"
},
"autoload": {
"files": [
"codepoints.net/lib/array_functions.php",
"codepoints.net/lib/request_functions.php",
"codepoints.net/lib/site_functions.php",
"codepoints.net/lib/unicode_functions.php",
"codepoints.net/lib/view_functions.php"
],
"psr-4": {
"Codepoints\\": "codepoints.net/lib/"
}
},
"require-dev": {
"vimeo/psalm": "^6.16",
"squizlabs/php_codesniffer": "^4.0",
"codeception/codeception": "^5.3",
"codeception/module-asserts": "^3.3",
"codeception/module-phpbrowser": "^4.0",
"codeception/module-rest": "^3.3",
"codeception/module-webdriver": "^4.0"
}
}