-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 841 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 841 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
41
42
43
44
{
"name": "urodoz/truncate-html",
"type": "library",
"description": "Handle truncate action on HTML strings",
"keywords": [
"html",
"truncating",
"shorten",
"content",
"truncate"
],
"license": "MIT",
"authors": [
{
"name": "Albert Lacarta",
"email": "urodoz@gmail.com",
"homepage": "http://www.rqlogic.com"
},
{
"name": "Marc Nolte",
"email": "contact@marcnolte.nl",
"homepage": "http://www.marcnolte.eu"
}
],
"require": {
"php": ">=5.5.9"
},
"require-dev": {
"phpunit/phpunit": "~4",
"symfony/http-kernel": "~3.2",
"symfony/dependency-injection": "~3.2",
"twig/twig": "~2"
},
"autoload": {
"psr-4": {
"Urodoz\\Truncate\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}