forked from osotov/phpunit-for-bitrix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 808 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 808 Bytes
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
{
"name": "dcodeteam/phpunit-for-bitrix",
"type": "library",
"description": "Based on https://github.com/osotov/phpunit-for-bitrix. Base test class for unit tests inside 1C-Bitrix framework environment",
"authors": [
{
"name": "Mikhail Osotov",
"email": "reghan7@gmail.com"
},
{
"name": "Alexander Lushnikov",
"email": "alegz@dcode.team"
}
],
"keywords": ["bitrix", "phpunit"],
"homepage": "https://github.com/dcodeteam/phpunit-for-bitrix",
"license": "MIT",
"autoload": {
"psr-4": {
"Dcode\\Bitrix\\": "src/"
}
},
"require": {
"php": ">=5.5.9",
"phpunit/phpunit": ">=4.7.0",
"mockery/mockery": ">=0.9.0",
"fzaninotto/faker": "1.*"
}
}