summaryrefslogtreecommitdiff
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..b8e7f69
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,34 @@
+{
+ "name": "drogueronin/guzzle-cardmarket-api-middleware",
+ "version": "1.0.0",
+ "type": "library",
+ "authors": [
+ {
+ "name": "Daniel Weipert",
+ "email": "code@drogueronin.de"
+ }
+ ],
+ "scripts": {
+ "test": "vendor/bin/phpunit tests"
+ },
+ "require": {
+ "php": ">=7.4",
+ "guzzlehttp/guzzle": "^7.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9.5"
+ },
+ "config": {
+ "sort-packages": true
+ },
+ "autoload": {
+ "psr-4": {
+ "CardmarketApi\\": "src/"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "CardmarketApi\\Tests\\": "tests/"
+ }
+ }
+}