forked from bigperson/laravel-exchange1c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 935 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
40
41
42
43
44
45
46
{
"name": "bigperson/laravel-exchange1c",
"type": "library",
"description": "Catalog Loader from 1c - CommerceML with laravel",
"keywords": [
"1c",
"CommerceML",
"Laravel"
],
"homepage": "https://github.com/bigperson",
"license": "MIT",
"authors": [
{
"name": "Anton Kartsev",
"role": "Developer"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Bigperson\\LaravelExchange1C\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=7.1",
"laravel/framework": "^5.4|^6.0|^7.0|^8.0|^9.0|^10.0",
"bigperson/exchange1c": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^7",
"orchestra/testbench": "~3.0",
"mockery/mockery": "^1.2"
},
"extra": {
"laravel": {
"providers": [
"Bigperson\\LaravelExchange1C\\Exchange1CServiceProvider"
]
}
}
}