-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
composer.json
64 lines (64 loc) · 1.67 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "ausi/slug-generator",
"type": "library",
"description": "Slug Generator",
"keywords": ["slug", "slugify", "slug-generator", "transliteration", "unicode", "ascii", "cldr", "pretty-url"],
"license": "MIT",
"authors": [
{
"name": "Martin Auswöger",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1 || ^8.0",
"ext-intl": "*",
"ext-mbstring": "*",
"ext-pcre": "*",
"lib-icu": ">=4.2.1"
},
"require-dev": {
"contao/easy-coding-standard": "^3.0",
"phpstan/phpstan": "^0.12.40",
"phpstan/phpstan-phpunit": "^0.12.16",
"phpunit/phpunit": "^7.5.20 || ^8.5.4 || ^9.4.2",
"psalm/plugin-phpunit": "^0.15",
"slam/phpstan-extensions": "^5.0",
"vimeo/psalm": "^4.0"
},
"autoload": {
"psr-4": {
"Ausi\\SlugGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ausi\\SlugGenerator\\Tests\\": "tests/"
}
},
"scripts": {
"all": [
"@unit-tests",
"@cs-fixer",
"@phpstan",
"@psalm"
],
"cs-fixer": [
"vendor/bin/ecs check src tests --fix --ansi"
],
"phpstan": [
"vendor/bin/phpstan analyze src tests --level=8 --memory-limit=1G --ansi"
],
"psalm": [
"vendor/bin/psalm --no-suggestions"
],
"unit-tests": [
"vendor/bin/phpunit --colors=always"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}