summaryrefslogtreecommitdiff
path: root/composer.json
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2020-12-13 20:34:09 +0100
committerDaniel Weipert <code@drogueronin.de>2020-12-13 20:34:09 +0100
commitd79154b3612ec5c79c2fd81adf3ee40b53f83c69 (patch)
treece0e761c765eb92e8796d17f8488e36556e55145 /composer.json
Initial commitv1.0.0
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/"
+ }
+ }
+}