Merge branch 'feature/L05DOCBST-41-webquery-class' into prod
* feature/L05DOCBST-41-webquery-class: L05DOCBST-41 add Library\Webquery class
... | ... | @@ -10,11 +10,22 @@ |
} | ||
], | ||
"require": { | ||
"php": ">=7.0.0" | ||
"php": ">=7.0.0", | ||
"guzzlehttp/guzzle": "^6.3" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Library\\": "src/library" | ||
} | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": ">=4.8 < 6.0" | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\": "tests/" | ||
} | ||
}, | ||
"scripts": { | ||
"test": "phpunit" | ||
} | ||
... | ... |
phpunit.xml
0 → 100644
src/library/Webquery.php
0 → 100644
tests/library/WebqueryTest.php
0 → 100644
Please register or sign in to comment