-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 956 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 956 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
31
{
"name": "moosend/website-tracking-old",
"description": "By installing the Moosend PHP Tracking library you are can track page views, product views, add to cart events and successful purchases. You can later use these details to segment your user base, run automations, check how successful your latest promo has been and how many conversions your landing page has led to.",
"type": "lib",
"license": "MIT",
"autoload": {
"psr-4": {
"Moosend\\": "src"
},
"files": [
"index.php"
]
},
"authors": [
{
"name": "Yannis Psarras",
"email": "yannis@moosend.com"
}
],
"require": {
"guzzlehttp/guzzle": "~5.0"
},
"require-dev": {
"phpspec/phpspec": "~3.0",
"leanphp/phpspec-code-coverage": "^3.1"
},
"scripts": {
"test": "phpspec run",
"start": "php -S localhost:8080"
}
}