-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
executable file
·51 lines (51 loc) · 1.1 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "b-tokman/yii2-react",
"description": "Yii 2 widget for server-side rendering ReactJs",
"license": "MIT",
"type": "yii2-extension",
"keywords": [
"react",
"reactjs",
"yii2"
],
"support": {
"issues": "https://github.com/bTokman/yii2-react/issues",
"source": "https://github.com/bTokman/yii2-react"
},
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "~2",
"reactjs/react-php-v8js": "^2.0",
"talyssonoc/php-babel-transpiler":"master",
"koala-framework/composer-extra-assets": "~1.1"
},
"extra": {
"require-npm": {
"react": "*",
"react-dom":"*",
"envify": "*",
"terser": "*",
"browserify": "^16",
"uglifyify": "*"
}
},
"scripts": {
"regenerate_react_bundle": [
"./build-bundles.sh"
],
"post-install-cmd": "@regenerate_react_bundle",
"post-update-cmd": "@regenerate_react_bundle"
},
"authors": [
{
"name": "Bohdan Tokman",
"email": "bogdantokman@gmail.com"
}
],
"autoload": {
"psr-4": {
"bTokman\\react\\": "lib/"
}
},
"minimum-stability": "dev"
}