-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.21 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
{
"name": "misd/mock-raven-service-bundle",
"type": "symfony-bundle",
"description": "Provides a controller replicating the Raven service, allow applications to functionally test the logging in process",
"keywords": ["authentication", "bundle", "test", "University of Cambridge"],
"homepage": "https://github.com/misd-service-development/mock-raven-service-bundle",
"license": "MIT",
"authors": [
{
"name": "Chris Wilkinson",
"email": "chris.wilkinson@admin.cam.ac.uk"
}
],
"support": {
"issues": "https://github.com/misd-service-development/mock-raven-service-bundle/issues"
},
"require": {
"php": ">=5.3.3",
"ext-openssl": "*",
"symfony/framework-bundle": "~2.1"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"symfony/browser-kit": "~2.1",
"symfony/class-loader": "~2.1",
"symfony/finder": "~2.1",
"symfony/yaml": "~2.1"
},
"autoload": {
"psr-0": {
"Misd\\MockRavenServiceBundle": ""
}
},
"target-dir": "Misd/MockRavenServiceBundle",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}