-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
49 lines (49 loc) · 1.19 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
45
46
47
48
49
{
"name": "roukmoute/hashids-bundle",
"type": "symfony-bundle",
"description": "Integrates hashids/hashids in a Symfony project",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Mathias STRASSER",
"email": "contact@roukmoute.fr"
}
],
"autoload": {
"psr-4": {
"Roukmoute\\HashidsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Roukmoute\\HashidsBundle\\": "spec/"
}
},
"require": {
"php": "^7.4 || ^8.0",
"hashids/hashids": "^4.1",
"sensio/framework-extra-bundle": "^5.1 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.3 || ^6.0",
"symfony/http-foundation": "^4.4 || ^5.3 || ^6.0"
},
"require-dev": {
"friends-of-phpspec/phpspec-expect": "^4.0",
"friendsofphp/php-cs-fixer": "^3.2",
"phpmd/phpmd": "^2.10",
"phpspec/phpspec": "^7.1",
"phpstan/phpstan": "^1.1",
"phpstan/phpstan-symfony": "^1.0",
"roave/security-advisories": "dev-latest",
"twig/twig": "^2.7 || ^3.0"
},
"suggest": {
"twig/twig": "Allows to use hashids in Twig template engine."
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}