-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
41 lines (41 loc) · 1.19 KB
/
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
34
35
36
37
38
39
40
41
{
"name": "jolicode/jolitypo",
"description": "Microtypography fixer for the web.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/jolicode/JoliTypo",
"keywords": ["typography", "ellipsis", "quote", "fixer", "smartquote"],
"authors": [
{
"name": "Damien Alexandre",
"email": "[email protected]",
"homepage": "https://damienalexandre.fr/"
}
],
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"lib-libxml": "*",
"org_heigl/hyphenator": "^2.6 || ^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.49.0",
"symfony/phpunit-bridge": "^6.4.3",
"symfony/framework-bundle": "^5.4 || ^6.4 || 7.0",
"symfony/twig-bundle": "^5.4 || ^6.4 || 7.0",
"symfony/yaml": "^5.4 || ^6.4 || 7.0"
},
"conflict": {
"ext-apc": "3.1.11"
},
"autoload": {
"psr-4": { "JoliTypo\\": "src/JoliTypo" }
},
"autoload-dev": {
"psr-4": { "JoliTypo\\Tests\\": "tests/JoliTypo/Tests" }
},
"scripts": {
"test": "vendor/bin/simple-phpunit",
"cs": "vendor/bin/php-cs-fixer fix"
}
}