Commits (2)
-
Emiliano Balbuena authored0ff7f2ab
-
Brian Hatchet authored
Clean up and strategies See merge request !2
ef46039c
Showing
.php_cs
0 → 100644
| ... | ... | @@ -2,16 +2,26 @@ |
| "name": "minds/unleash-client-php", | ||
| "type": "library", | ||
| "description": "PHP client for Unleash", | ||
| "keywords": ["unleash", "client", "minds"], | ||
| "keywords": [ | ||
| "unleash", | ||
| "client", | ||
| "minds" | ||
| ], | ||
| "homepage": "https://gitlab.com/minds/unleash-client-php", | ||
| "license": "MIT", | ||
| "authors": [ | ||
| { | ||
| "name": "Brian Hatchet", | ||
| "email": "brian@minds.com", | ||
| "homepage": "http://www.minds.com/brianhatchet", | ||
| "role": "Developer" | ||
| } | ||
| { | ||
| "name": "Brian Hatchet", | ||
| "email": "brian@minds.com", | ||
| "homepage": "http://www.minds.com/brianhatchet", | ||
| "role": "Developer" | ||
| }, | ||
| { | ||
| "name": "Emiliano Balbuena", | ||
| "email": "emiliano@minds.com", | ||
| "homepage": "http://www.minds.com/edgebal", | ||
| "role": "Developer" | ||
| } | ||
| ], | ||
| "minimum-stability": "dev", | ||
| "config": { | ||
| ... | ... | @@ -23,17 +33,19 @@ |
| "monolog/monolog": "^2.0@dev", | ||
| "psr/simple-cache": "^1.0@dev", | ||
| "zendframework/zend-cache": "^2.9@dev", | ||
| "zendframework/zend-serializer": "^2.9@dev" | ||
| "zendframework/zend-serializer": "^2.9@dev", | ||
| "lastguest/murmurhash": "dev-master" | ||
| }, | ||
| "require-dev": { | ||
| "bossa/phpspec2-expect": "^3.0", | ||
| "phpspec/phpspec": "^4.0", | ||
| "phpspec/prophecy": "~1.0" | ||
| "bossa/phpspec2-expect": "^3.0", | ||
| "phpspec/phpspec": "^4.0", | ||
| "phpspec/prophecy": "~1.0", | ||
| "friendsofphp/php-cs-fixer": "^2.17@dev" | ||
| }, | ||
| "autoload": { | ||
| "files": [ | ||
| "src/Client.php", | ||
| "src/Unleash.php" | ||
| "src/Client.php", | ||
| "src/Unleash.php" | ||
| ], | ||
| "psr-4": { | ||
| "Minds\\UnleashClient\\": "src/", | ||
| ... | ... |
This diff is collapsed.
example/cli.php
0 → 100644
example/normalizer.php
0 → 100644
src/Cache/SimpleCache.php
0 → 100644
src/Cli.php
deleted
100644 → 0
src/StrategyResolver.php
0 → 100644