-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 2.34 KB
/
Copy pathcomposer.json
File metadata and controls
77 lines (77 loc) · 2.34 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "helturkey/php-arabic-support",
"description": "Modern Arabic text support for PHP and Laravel: slugs, normalization, search keys, digits, cleaning, filenames, excerpts, and validation.",
"type": "library",
"license": "MIT",
"keywords": [
"arabic",
"php",
"laravel",
"slug",
"normalization",
"unicode",
"text",
"search"
],
"authors": [
{
"name": "Hussein Srour",
"homepage": "https://github.com/helturkey"
}
],
"require": {
"php": "^8.2"
},
"require-dev": {
"phpunit/phpunit": "^10.5.35",
"phpstan/phpstan": "^1.12",
"laravel/pint": "^1.29",
"illuminate/support": "^11.3.1|^12.0|^13.0",
"illuminate/translation": "^11.3.1|^12.0|^13.0",
"illuminate/database": "^11.3.1|^12.0|^13.0",
"illuminate/events": "^11.3.1|^12.0|^13.0"
},
"suggest": {
"ext-mbstring": "Improves Unicode-safe lowercase, length, and substring handling. The package has fallbacks when it is missing.",
"ext-intl": "Enables ICU normalization, transliteration, and grapheme-aware string functions.",
"illuminate/support": "Required for Laravel service provider, facade, macros, and validation rules.",
"illuminate/database": "Required only when using the optional Eloquent traits."
},
"autoload": {
"psr-4": {
"ArabicSupport\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ArabicSupport\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"ArabicSupport\\ArabicSupportServiceProvider"
],
"aliases": {
"Arabic": "ArabicSupport\\Laravel\\Facades\\Arabic"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-text",
"analyse": "phpstan analyse src --configuration=phpstan.neon.dist",
"phpstan": "@analyse",
"format": "pint",
"format:test": "pint --test",
"security:runtime": "composer audit --no-dev",
"ci": [
"@format:test",
"@analyse",
"@test",
"@security:runtime"
]
}
}