-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
56 lines (56 loc) · 1.85 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
50
51
52
53
54
55
56
{
"name": "tilleuls/url-signer-bundle",
"type": "symfony-bundle",
"description": "Create and validate signed URLs with a limited lifetime in Symfony",
"keywords": ["symfony", "security", "url", "encryption", "sign"],
"license": "MIT",
"authors": [
{
"name": "Alan Poulain",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"CoopTilleuls\\UrlSignerBundle\\": ""
},
"exclude-from-classmap": ["/features/", "/tests/"]
},
"autoload-dev": {
"psr-4": {
"CoopTilleuls\\UrlSignerBundle\\Tests\\": "features/app/src",
"Tests\\": "tests"
}
},
"require": {
"php": ">=8.1",
"spatie/url-signer": "^2.0",
"symfony/config": "^4.4 || ^5.1 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^4.4 || ^5.1 || ^6.0 || ^7.0",
"symfony/event-dispatcher": "^4.4 || ^5.1 || ^6.0 || ^7.0",
"symfony/http-kernel": "^4.4 || ^5.1 || ^6.0 || ^7.0",
"symfony/routing": "^4.4 || ^5.1 || ^6.0 || ^7.0"
},
"require-dev": {
"behat/behat": "^3.8",
"friends-of-behat/symfony-extension": "^2.2",
"friendsofphp/php-cs-fixer": "^3.0",
"infection/infection": "^0.27",
"jangregor/phpstan-prophecy": "^1.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^10.5",
"psalm/plugin-phpunit": "^0.18",
"psalm/plugin-symfony": "^5.0",
"symfony/browser-kit": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"vimeo/psalm": "^5.8"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
}
}