-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.23 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
42
43
44
45
46
47
48
49
50
{
"name": "souplette/fusbup",
"description": "A fast & memory-efficient interface to the Mozilla Public Suffix List.",
"type": "library",
"license": "MIT",
"keywords": [
"public suffix list",
"top level domain",
"effective tld",
"tld",
"etld",
"psl",
"icann",
"domain",
"cookie"
],
"authors": [
{
"name": "ju1ius",
"email": "jules.bernable@gmail.com"
}
],
"scripts": {
"test": "XDEBUG_MODE=off tools/phpunit.phar",
"coverage": "rm -rf tmp/coverage && XDEBUG_MODE=off php -dpcov.enabled=1 tools/phpunit.phar --coverage-html=tmp/coverage",
"update-list": "XDEBUG_MODE=off php scripts/update-list.php",
"update-psl-tests": "XDEBUG_MODE=off php scripts/update-psl-tests.php",
"bench": "XDEBUG_MODE=off tools/phpbench.phar run --report=aggregate"
},
"autoload": {
"psr-4": {
"Souplette\\FusBup\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Souplette\\FusBup\\Compiler\\": "compiler/",
"Souplette\\FusBup\\Tests\\": "tests/",
"Souplette\\FusBup\\Benchmarks\\": "bench/"
}
},
"require": {
"php": ">=8.1",
"ext-intl": "*"
},
"require-dev": {
"symfony/stopwatch": "^6.2",
"ju1ius/luigi": "^1.0"
}
}