60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"name": "cocur/slugify",
|
|
"type": "library",
|
|
"description": "Converts a string into a slug.",
|
|
"keywords": [
|
|
"slug",
|
|
"slugify"
|
|
],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Florian Eckerstorfer",
|
|
"email": "florian@eckerstorfer.co",
|
|
"homepage": "https://florian.ec"
|
|
},
|
|
{
|
|
"name": "Ivo Bathke",
|
|
"email": "ivo.bathke@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.0",
|
|
"ext-mbstring": "*"
|
|
},
|
|
"conflict": {
|
|
"symfony/config": "<3.4 || >=4,<4.3",
|
|
"symfony/dependency-injection": "<3.4 || >=4,<4.3",
|
|
"symfony/http-kernel": "<3.4 || >=4,<4.3",
|
|
"twig/twig": "<2.12.1"
|
|
},
|
|
"require-dev": {
|
|
"laravel/framework": "~5.1",
|
|
"latte/latte": "~2.2",
|
|
"league/container": "^2.2.0",
|
|
"mikey179/vfsstream": "~1.6.8",
|
|
"mockery/mockery": "^1.3",
|
|
"nette/di": "~2.4",
|
|
"phpunit/phpunit": "^5.7.27",
|
|
"pimple/pimple": "~1.1",
|
|
"plumphp/plum": "~0.1",
|
|
"symfony/config": "^3.4 || ^4.3 || ^5.0",
|
|
"symfony/dependency-injection": "^3.4 || ^4.3 || ^5.0",
|
|
"symfony/http-kernel": "^3.4 || ^4.3 || ^5.0",
|
|
"twig/twig": "^2.12.1 || ~3.0",
|
|
"zendframework/zend-modulemanager": "~2.2",
|
|
"zendframework/zend-servicemanager": "~2.2",
|
|
"zendframework/zend-view": "~2.2"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Cocur\\Slugify\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Cocur\\Slugify\\Tests\\": "tests"
|
|
}
|
|
}
|
|
}
|