-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.23 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.23 KB
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
53
54
{
"name": "ray/doctrine-orm-module",
"description": "doctrine/orm module for Ray.Di",
"keywords": [
"Ray.Di",
"Doctrine ORM"
],
"type": "library",
"require": {
"php": ">=5.6",
"ray/di": "~2.2",
"doctrine/orm": "~2.5",
"psr/log": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~5.4",
"squizlabs/php_codesniffer": "~2.6",
"phpmd/phpmd": "~2.4",
"friendsofphp/php-cs-fixer": "~1.11"
},
"license": "MIT",
"authors": [
{
"name": "Yuu Kawanami",
"email": "yuu.kawanami@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Ray\\DoctrineOrmModule\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ray\\DoctrineOrmModule\\": [
"tests/",
"tests/Fake/"
]
}
},
"scripts": {
"test": [
"phpmd src text ./phpmd.xml",
"phpcs src tests",
"phpunit --coverage-text"
],
"cs-fix": [
"php-cs-fixer fix --config-file=./.php_cs -v",
"phpcbf src"
]
}
}