From cae24c5c0cc443705ca4aad9e9ea538623aae93c Mon Sep 17 00:00:00 2001 From: GitProtogen Date: Sat, 7 Mar 2026 20:50:04 +0100 Subject: [PATCH] removed composer.json from gitignore --- .gitignore | 3 +-- .idea/.gitignore | 8 -------- .idea/dataSources.xml | 12 ------------ .idea/modules.xml | 8 -------- .idea/php-com-cen.iml | 29 ---------------------------- .idea/php.xml | 45 ------------------------------------------- .idea/vcs.xml | 6 ------ composer.json | 11 +++++++++++ 8 files changed, 12 insertions(+), 110 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/dataSources.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/php-com-cen.iml delete mode 100644 .idea/php.xml delete mode 100644 .idea/vcs.xml create mode 100644 composer.json diff --git a/.gitignore b/.gitignore index dd26e04..01b8df6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ vendor -composer.json composer.lock -storage/database.sqlite \ No newline at end of file +storage/database.sqlite diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml deleted file mode 100644 index 7aba0d8..0000000 --- a/.idea/dataSources.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - sqlite.xerial - true - org.sqlite.JDBC - jdbc:sqlite:$PROJECT_DIR$/storage/database.sqlite - $ProjectFileDir$ - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 68fb876..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/php-com-cen.iml b/.idea/php-com-cen.iml deleted file mode 100644 index 7dd7874..0000000 --- a/.idea/php-com-cen.iml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/php.xml b/.idea/php.xml deleted file mode 100644 index 5c1dc9c..0000000 --- a/.idea/php.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1dd..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..1fb27f4 --- /dev/null +++ b/composer.json @@ -0,0 +1,11 @@ +{ + "require": { + "cboden/ratchet": "^0.4.4", + "ext-pdo": "*" + }, + "autoload": { + "psr-4": { + "ComCen\\": "src/" + } + } +}