-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (39 loc) · 847 Bytes
/
Copy pathcomposer.json
File metadata and controls
40 lines (39 loc) · 847 Bytes
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
{
"name": "arutil/ar-php",
"description": "Arabic php utilities from Khaled Al-Sham'aa's library http://ar-php.org/",
"type": "library",
"keywords": [
"Arabic", "Hijri", "Islamic"
],
"authors": [
{
"name": "Khaled Al-Shamaa",
"email": "khaled@ar-php.org",
"homepage":"http://www.ar-php.org"
},
{
"name": "Hamoud Alhoqbani",
"email": "h.alhoqbani@gmail.com"
}
],
"license": "LGPL-3.0",
"homepage": "https://github.com/alhoqbani/ar-php",
"require": {
"php": ">=5.6.0",
"nesbot/carbon": "^1.22"
},
"autoload":{
"psr-4": {
"ArUtil\\": "src/ArUtil"
},
"files": ["src/bootstrap.php"]
},
"autoload-dev":{
"psr-4": {
"ArUtil\\Tests\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "^5.7"
}
}