From dfdc99d1651e77245281d7ad45be6a1eeea998f2 Mon Sep 17 00:00:00 2001 From: Malico Date: Thu, 22 Jul 2021 10:54:41 +0100 Subject: [PATCH] omit tests in prduct --- .gitignore | 3 ++- composer.json | 12 +++++++----- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 51876af..382f5a0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /vendor -.phpunit.result.cache \ No newline at end of file +.phpunit.result.cache +composer.lock \ No newline at end of file diff --git a/composer.json b/composer.json index 5d7d352..50df9b8 100644 --- a/composer.json +++ b/composer.json @@ -2,17 +2,19 @@ "name": "malico/mobile-cm-php", "description": "Get Telephone number's Mobile Network", "license": "MIT", + "archive": { + "exclude": [ + "tests" + ] + }, "authors": [ { "name": "Malico", "email": "hi@malico.me" } - ], - "autoload": - { - "psr-4": - { + "autoload": { + "psr-4": { "Malico\\MobileCM\\": "src/" } },