-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 949 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
{
"name": "arfaram/ezplatform-hubspot",
"type": "ezplatform-bundle",
"description": "Share content to social media via Hubspot",
"keywords": ["ezplatform", "Hubspot"],
"homepage": "https://github.com/arfaram/ezplatform-hubspot",
"license": "MIT",
"authors": [
{
"name": "Ramzi Arfaoui",
"email": "ramzi_arfa@hotmail.de"
}
],
"autoload": {
"psr-4": {
"EzPlatform\\HubSpotBundle\\": "src/bundle",
"EzPlatform\\HubSpot\\": "src/lib"
}
},
"require": {
"php": "^7.3",
"ezsystems/ezplatform-kernel": "^1.0",
"ezsystems/ezplatform-admin-ui": "^2.0",
"hubspot/hubspot-php": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16.1",
"ezsystems/ezplatform-code-style": "^0.1"
},
"scripts": {
"fix-cs": "@php ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}