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/" + } + } +}