-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 744 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 744 Bytes
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
{
"name": "fnash/js-param-bundle",
"type": "symfony-bundle",
"description": "Simple way to expose some Symfony container parameters to javascript",
"keywords": ["Parameters", "Js"],
"homepage": "http://github.com/fnash/FnashJsParamBundle",
"license": "MIT",
"authors": [
{
"name": "Fayez Naccache",
"email": "fayez.naccache@gmail.com"
}
],
"require": {
"php": ">=7"
},
"require-dev": {
"symfony/dependency-injection": "^3.0",
"symfony/framework-bundle": "^3.0",
"symfony/http-foundation": "^3.0",
"symfony/http-kernel": "^3.0"
},
"autoload":{
"psr-4":{
"Fnash\\JsParamBundle\\": ""
}
}
}