-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.12 KB
/
Copy pathcomposer.json
File metadata and controls
47 lines (47 loc) · 1.12 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
{
"name": "icawebdesign/reading-time",
"description": "Calculate indication of length of time to read an article",
"keywords": [
"icawebdesign",
"article",
"reading"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ian.H",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd": "^2.8",
"orchestra/testbench": "^4.5"
},
"autoload": {
"psr-4": {
"Icawebdesign\\ReadingTime\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Icawebdesign\\ReadingTime\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Icawebdesign\\ReadingTime\\Providers\\ReadingTimeServiceProvider"
],
"aliases": {
"ReadingTime": "Icawebdesign\\ReadingTime\\Facades\\ReadingTime"
}
}
}
}