-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
52 lines (52 loc) · 1.51 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
52
{
"name": "bear/reactjs-module",
"description": "Redux React Serevr-Side Rendering using V8Js module for BEAR.Sunday",
"require": {
"php": ">=7.1.0",
"bear/resource": "^1.4.0",
"koriym/redux-react-ssr": "^1.0.2"
},
"require-dev": {
"phpunit/phpunit": "^5.3"
},
"license": "MIT",
"authors": [
{
"name": "Akihito Koriyama",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"BEAR\\ReactJsModule\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BEAR\\ReactJsModule\\": [
"tests/",
"tests/Fake"
]
}
},
"scripts": {
"test": [
"phpmd src text ./phpmd.xml",
"phpcs src",
"phpunit"
],
"cs-fix": [
"php-cs-fixer fix --config-file=./.php_cs",
"phpcbf src"
],
"build": [
"rm -rf ./build; mkdir -p ./build/logs ./build/pdepend ./build/api",
"pdepend --jdepend-xml=./build/logs/jdepend.xml --jdepend-chart=./build/pdepend/dependencies.svg --overview-pyramid=./build/pdepend/overview-pyramid.svg src",
"phploc --log-csv ./build/logs/phploc.csv src",
"phpcs --report=checkstyle --report-file=./build/logs/checkstyle.xml --standard=phpcs.xml src",
"apigen generate -s src -d build/api --debug",
"@test"
]
},
"minimum-stability": "stable"
}