-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
executable file
·37 lines (37 loc) · 1.01 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
{
"name": "ddesrosiers/silex-annotation-provider",
"description": "A silex service provider that allows the use of annotations in ServiceControllers.",
"keywords": ["silex", "annotation", "service", "provider"],
"license": "MIT",
"authors": [
{
"name": "Dana Desrosiers",
"email": "dana.desrosiers@gmail.com"
}
],
"require": {
"php": ">=7.1.0",
"ext-pcre": "*",
"silex/silex": "~2.0",
"psr/simple-cache": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"symfony/browser-kit": "~2.4.0",
"symfony/security": "~2.4"
},
"suggest": {
"symfony/security": "You will need this package to use the `Secure` annotation"
},
"autoload": {
"psr-4": {
"DDesrosiers\\SilexAnnotations\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DDesrosiers\\Test\\SilexAnnotations\\": "test/"
}
},
"minimum-stability": "stable"
}