-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 934 Bytes
/
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
{
"name": "oblak/number-serbianisation",
"description": "Convert numbers to words in Serbian language",
"license": "MIT",
"keywords": [
"numbers",
"words",
"serbian"
],
"authors": [
{
"name": "Sibin Grasic",
"email": "sibin.grasic@oblak.studio"
}
],
"support": {
"issues": "https://github.com/oblakstudio/number-serbianisation/issues",
"source": "https://github.com/oblakstudio/number-serbianisation"
},
"require": {
"php": "^8.1"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5",
"slevomat/coding-standard": "^8.15",
"squizlabs/php_codesniffer": "^3.9"
},
"autoload": {
"psr-4": {
"Oblak\\Intl\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Oblak\\Intl\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}