-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.54 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.54 KB
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
{
"name": "fourcoders/latch-bundle",
"type": "symfony-bundle",
"description": "Easy integration of Latch in your symfony2 project.",
"keywords": ["security", "symfony", "latch", "fourcoders", "php"],
"license": "MIT",
"authors": [{
"name": "fourcoders",
"homepage": "http://fourcoders.com/",
"email": "fourcoders@gmail.com"
}],
"repositories": [
{
"type": "package",
"package": {
"name": "elevenpaths/latch-sdk-php",
"version": "dev-master",
"source": {
"url": "https://github.com/ElevenPaths/latch-sdk-php.git",
"type": "git",
"reference": "origin/master"
},
"autoload": {
"classmap": ["/"]
}
}
}
],
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"phpspec/phpspec": "~2.0",
"symfony/framework-bundle": ">=2.0.0",
"symfony/security-http": "v2.6.1",
"doctrine/orm": "v2.4.7",
"symfony/form": "2.7.*@dev",
"symfony/validator": "v2.6.0",
"elevenPaths/latch-sdk-php": "dev-master",
"fourcoders/latch-sdk-php" : "dev-master"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": {
"Fourcoders\\Bundle\\LatchBundle": "",
"ElevenPaths\\Latch\\": "vendor/elevenpaths/latch-sdk-php"
}
},
"target-dir": "Fourcoders/Bundle/LatchBundle"
}