-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
51 lines (51 loc) · 1.32 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
{
"name": "mostafamaklad/laravel-arabic-numbers",
"description": "Convert all Arabic numbers input to English Numbers",
"keywords": [
"laravel",
"middleware",
"arabic",
"numbers",
"mostafamaklad",
"maklad",
"mostafa"
],
"homepage": "https://github.com/mostafamaklad/laravel-arabic-numbers",
"license": "MIT",
"authors": [
{
"name": "Mostafa Maklad",
"email": "[email protected]",
"homepage": "https://github.com/mostafamaklad",
"role": "Owner"
}
],
"require": {
"php": ">=5.6.4",
"laravel/framework": "^5.4.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.1",
"codacy/coverage": "dev-master"
},
"autoload": {
"psr-4": {
"Maklad\\ArabicNumbers\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Maklad\\ArabicNumbers\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"check-style": "vendor/bin/phpcs --standard=psr2 src/",
"fix-style": "vendor/bin/phpcbf --standard=psr2 src/",
"clover": "vendor/bin/codacycoverage clover"
},
"config": {
"sort-packages": true
}
}