-
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) · 998 Bytes
/
composer.json
File metadata and controls
47 lines (47 loc) · 998 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
45
46
47
{
"name" : "yic/sluggable-bundle",
"type" : "symfony-bundle",
"description" : "A Symfony bundle for slug-based entity routing.",
"keywords" : [
"symfony",
"bundle",
"slug",
"routing"
],
"license" : "MIT",
"authors" : [{
"name" : "Yaovi Ametepe",
"email" : "yaoviscoder@gmail.com"
}
],
"require" : {
"php" : "^8.1",
"doctrine/orm" : "^2.15",
"sensio/framework-extra-bundle" : "^6.0 || ^5.0",
"symfony/framework-bundle" : "^6.4 || ^5.4",
"symfony/dependency-injection" : "^6.4",
"symfony/config" : "^6.4",
"symfony/http-foundation" : "^6.4",
"symfony/http-kernel" : "^6.4",
"gedmo/doctrine-extensions" : "^3.11",
"doctrine/annotations" : "^2.0"
},
"require-dev" : {
"phpunit/phpunit" : "^10.0",
"symfony/phpunit-bridge" : "^6.4"
},
"autoload" : {
"psr-4" : {
"YIC\\SluggableBundle\\" : "src/"
}
},
"extra" : {
"branch-alias" : {
"dev-main" : "1.0.0-dev"
},
"symfony" : {
"allow-contrib" : true,
"require" : "6.4.*"
}
}
}