-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·38 lines (38 loc) · 1.11 KB
/
composer.json
File metadata and controls
executable file
·38 lines (38 loc) · 1.11 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
{
"name" : "fbeen/uniqueslugbundle4",
"type": "symfony-bundle",
"description": "Add easy and quickly unique slugs to your enities and routes",
"keywords": [
"Slugs",
"Symfony",
"Unique slugs"
],
"homepage": "https://github.com/Fbeen/UniqueSlugBundle",
"license": "MIT",
"authors": [
{
"name": "Frank Beentjes",
"email": "frankbeen@gmail.com",
"homepage": "https://php-programmmer.nl"
}
],
"require": {
"php": "^8.0",
"ext-intl": "*",
"doctrine/inflector": "^2.0.4",
"nikic/php-parser": "^4.0",
"symfony/config": "^3.4|^4.0|^5.4",
"symfony/console": "^3.4|^4.0|^v5.4",
"symfony/dependency-injection": "^3.4|^4.0|^5.4",
"symfony/filesystem": "^3.4|^4.0|^5.4",
"symfony/finder": "^3.4|^4.0|^5.4",
"symfony/framework-bundle": "^3.4|^4.0|^5.4",
"symfony/http-kernel": "^3.4|^4.0|^5.4",
"symfony/maker-bundle": ">1.1"
},
"autoload" : {
"psr-4" : {
"Fbeen\\UniqueSlugBundle\\" : ""
}
}
}