-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 778 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 778 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
30
{
"name": "mrself/mrcommerce",
"description": "mrcommerce",
"type": "symfony-bundle",
"require": {
"moderntribe/bigcommerce-api-php-v3": "^2.0",
"league/container": "^3.3",
"phpunit/phpunit": "^8",
"symfony/event-dispatcher": "^5.2",
"ext-json": "*",
"bigcommerce/api": "^3.2",
"symfony/yaml": "^5.2",
"doctrine/doctrine-bundle": "^2.3",
"doctrine/orm": "^2.8"
},
"require-dev": {
"symfony/framework-bundle": "^5.2",
"symfony/browser-kit": "^5.2"
},
"autoload": {
"psr-4": {
"Mrself\\Mrcommerce\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Mrself\\Mrcommerce\\Tests\\": "./tests/"
}
}
}