-
Notifications
You must be signed in to change notification settings - Fork 55
/
composer.json
41 lines (41 loc) · 1001 Bytes
/
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
{
"name": "hearsay/require-js-bundle",
"description": "This bundle provides integration of the RequireJS library into Symfony2",
"type": "symfony-bundle",
"keywords": [
"amd",
"commonjs",
"requirejs",
"rjs"
],
"license": "MIT",
"authors": [
{
"name": "Kevin Montag",
"email": "kmontag@cs.stanford.edu"
}
],
"require": {
"php": ">=5.3.2",
"symfony/finder": ">=2.0",
"symfony/yaml": ">=2.0",
"kriswallsmith/assetic": ">= 1.0",
"symfony/framework-bundle": ">=2.0.9"
},
"require-dev": {
"twig/extensions": "v1.0.0",
"squizlabs/php_codesniffer": "1.*",
"phpunit/phpunit": "3.7.*"
},
"autoload": {
"psr-0": {
"Hearsay\\RequireJSBundle": ""
}
},
"target-dir": "Hearsay/RequireJSBundle",
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}