From 975458382850e1b6a052948b00bc98b2c49b93b7 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Tue, 19 Oct 2021 18:23:15 +0200 Subject: [PATCH] wip #4808 --- .idea/cubist_pdf.iml | 4 +++- .idea/php.xml | 4 ++++ composer.json | 40 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 .idea/php.xml diff --git a/.idea/cubist_pdf.iml b/.idea/cubist_pdf.iml index d6ebd48..23756bf 100644 --- a/.idea/cubist_pdf.iml +++ b/.idea/cubist_pdf.iml @@ -2,7 +2,9 @@ - + + + diff --git a/.idea/php.xml b/.idea/php.xml new file mode 100644 index 0000000..f6159c8 --- /dev/null +++ b/.idea/php.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/composer.json b/composer.json index e69de29..319d958 100644 --- a/composer.json +++ b/composer.json @@ -0,0 +1,40 @@ +{ + "name": "cubist/pdf", + "description": "PDF", + "type": "library", + "license": "proprietary", + "minimum-stability": "dev", + "keywords": [ + "cubist", + "pdf" + ], + "autoload": { + "psr-4": { + "Cubist\\PDF\\": "src" + } + }, + "authors": [ + { + "name": "Vincent Vanwaelscappel", + "email": "vincent@cubedesigners.com" + } + ], + "require": { + "php": ">=7.3.0", + "laravel/framework": "^v8.64.0", + "ext-json": "*" + }, + "repositories": [ + { + "type": "composer", + "url": "https:\/\/composer.cubedesigners.com\/" + } + ], + "extra": { + "laravel": { + "providers": [ + + ] + } + } +} -- 2.39.5