forked from arrilot/bitrix-models
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
39 lines (39 loc) · 905 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": "ge1i0n/bitrix-models",
"license": "MIT",
"keywords": [
"bitrix",
"models"
],
"authors": [
{
"name": "Nekrasov Ilya",
"email": "nekrasov.ilya90@gmail.com"
}
],
"homepage": "https://github.com/ge1i0n/bitrix-models",
"require": {
"php": "^8.2",
"illuminate/support": "^11.0",
"illuminate/pagination": "^11.0"
},
"suggest": {
"arrilot/bitrix-blade": "To render pagination views using ->links()",
"illuminate/database": "5.*|6.*|7.*|8.*|9.*|10.*|11.* to use Eloquent models",
"illuminate/events": "5.*|6.*|7.*|8.*|9.*|10.*|11.* 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/"
}
}
}