-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 2.39 KB
/
Copy pathcomposer.json
File metadata and controls
70 lines (70 loc) · 2.39 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "getjoystick/joystick-php",
"description": "Joystick is a modern remote configuration and dynamic content service designed specifically for operating apps and games. Upgrade to more agility and evolve your product faster. Change or hot-update your content and configurations instantly at scale without code. Segment, ab test, feature flag, schedule events and more. Joystick is a breeze to use yet powerful.",
"keywords": [
"Remote configuration",
"feature flagging",
"dynamic content",
"remote configs",
"live-ops",
"game ops",
"ab testing",
"segmentation",
"dynamic json",
"update json",
"remote json"
],
"homepage": "https://github.com/getjoystick/joystick-php",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Joystick and contributors",
"homepage": "https://getjoystick.com"
}
],
"require": {
"php": ">=7.2",
"ext-curl": "*",
"ext-json": "*",
"beberlei/assert": "^3.3",
"cache/array-adapter": "^1.1",
"php-http/discovery": "^1.15",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0",
"psr/simple-cache": "^1.0|^2.0|^3.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.5",
"phpspec/prophecy": "^1.17",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.7"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Joystick\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Joystick\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"lint": "./vendor/bin/phpcs --standard=./phpcs.xml ./src ./tests ./examples",
"phpstan": " vendor/bin/phpstan analyse -c ./phpstan-src.neon && vendor/bin/phpstan analyse -c ./phpstan-tests.neon",
"dev-test": "composer run test-coverage && composer run lint && composer run phpstan",
"lint-fix": "./tools/php-cs-fixer/vendor/bin/php-cs-fixer fix"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}