forked from cocur/slugify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.27 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
{
"name": "cocur/slugify",
"type": "library",
"description": "Converts a string into a slug.",
"keywords": ["slug", "slugify"],
"license": "MIT",
"authors": [
{
"name": "Florian Eckerstorfer",
"email": "[email protected]",
"homepage": "https://florian.ec"
},
{
"name": "Ivo Bathke",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"ext-mbstring": "*"
},
"require-dev": {
"laravel/framework": "~5.1",
"latte/latte": "~2.2",
"league/container": "^2.2.0",
"mikey179/vfsStream": "~1.6",
"mockery/mockery": "~0.9",
"nette/di": "~2.2",
"phpunit/phpunit": "~4.8|~5.2",
"pimple/pimple": "~1.1",
"plumphp/plum": "~0.1",
"silex/silex": "~1.3",
"symfony/config": "~2.4|~3.0|~4.0",
"symfony/dependency-injection": "~2.4|~3.0|~4.0",
"symfony/http-kernel": "~2.4|~3.0|~4.0",
"twig/twig": "~1.26|~2.0",
"zendframework/zend-modulemanager": "~2.2",
"zendframework/zend-servicemanager": "~2.2",
"zendframework/zend-view": "~2.2"
},
"autoload": {
"psr-4": {"Cocur\\Slugify\\": "src"}
}
}