-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
26 lines (26 loc) · 933 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
{
"name": "rapidwebltd/php-bucket-testing",
"description": "This library enables developers to easily redirect users to different URLs, for the purpose of bucket testing. Bucket testing is also known as A/B testing or split testing. This type of testing is used to test two or more versions of a webpage to determine which one performs better based on specfied key metrics, such as clicks, downloads, purchases or any other form of conversion.",
"license": "LGPL-3.0-only",
"keywords": [
"a b testing",
"split testing",
"bucket testing",
"UX testing",
"UI testing",
"testing",
"frontend testing"
],
"require": {
"php": ">=5.3"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"satooshi/php-coveralls": "^2.0"
},
"autoload": {
"psr-4": {
"RapidWeb\\BucketTesting\\": "./src/"
}
}
}