-
Notifications
You must be signed in to change notification settings - Fork 53
/
composer.json
40 lines (40 loc) · 1.27 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
{
"name": "limenius/react-bundle",
"description": "Client and Server-side react rendering in a Symfony Bundle",
"type": "symfony-bundle",
"keywords": ["react", "isomorphic"],
"license": "MIT",
"authors": [
{
"name": "nacho",
"email": "nacho@limenius.com"
}
],
"autoload": {
"psr-4": { "Limenius\\ReactBundle\\": "" }
},
"require": {
"php": ">=5.5.0",
"symfony/config": "^2.7.0|^3.0.6|^4.0|^5.0|^6.0",
"symfony/http-kernel": "^2.7.0|^3.0.6|^4.0|^5.0|^6.0",
"symfony/dependency-injection": "^2.7.0|^3.0.6|^4.0|^5.0|^6.0",
"limenius/react-renderer": "^5.0.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.5",
"escapestudios/symfony2-coding-standard": "^2.9",
"wimg/php-compatibility": "^7.0"
},
"scripts": {
"default-scripts": [
"rm -rf vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PHPCompatibility; cp -rp vendor/wimg/php-compatibility vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PHPCompatibility"
],
"post-install-cmd": [
"@default-scripts"
],
"post-update-cmd": [
"@default-scripts"
]
},
"minimum-stability": "dev"
}