forked from arrilot/bitrix-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 879 Bytes
/
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
{
"name": "arrilot/bitrix-models",
"license": "MIT",
"keywords": [
"bitrix",
"models"
],
"authors": [
{
"name": "Nekrasov Ilya",
"email": "[email protected]"
}
],
"homepage": "https://github.com/Arrilot/bitrix-models",
"require": {
"php": ">=5.6.4",
"illuminate/support": "^5.4,<5.8",
"illuminate/pagination": "^5.4,<5.8"
},
"suggest": {
"arrilot/bitrix-blade": "To render pagination views using ->links()",
"illuminate/database": "^5.4,<5.8 to use Eloquent models",
"illuminate/events": "^5.4,<5.8 to use events in Eloquent models"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"mockery/mockery": "~1"
},
"autoload": {
"psr-4": {
"Arrilot\\BitrixModels\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Arrilot\\Tests\\BitrixModels\\": "tests/"
}
}
}