-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
28 lines (28 loc) · 889 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
{
"name": "qpautrat/reactjs-php-bundle",
"description": "Render ReactJS component in server side using reactjs/react-php-v8js",
"type": "symfony-bundle",
"version": "1.0.0",
"keywords": ["react", "reactjs", "php", "bundle", "symfony", "srr", "v8js"],
"homepage": "https://github.com/qpautrat/reactjs-php-bundle",
"license": "MIT",
"authors": [
{
"name": "Quentin Pautrat",
"email": "quentin.pautrat@gmail.com"
}
],
"require": {
"reactjs/react-php-v8js": "dev-master",
"symfony/http-kernel": "~2.0",
"symfony/templating": "~2.0",
"symfony/dependency-injection": "~2.0",
"symfony/config": "~2.0"
},
"suggest": {
"twig/twig": "Allow to use twig templating engine"
},
"autoload": {
"psr-4": { "QPautrat\\ReactjsPhpBundle\\": "src" }
}
}