From f739c499bda75a986d74e7374d7e66be37479f7f Mon Sep 17 00:00:00 2001 From: ABGEO Date: Wed, 6 Mar 2019 00:46:20 +0400 Subject: [PATCH] initial commit --- .gitignore | 2 ++ CHANGELOG.md | 1 + LICENSE | 21 +++++++++++++++++++++ README.md | 4 ++++ composer.json | 25 +++++++++++++++++++++++++ composer.lock | 20 ++++++++++++++++++++ examples/test.php | 8 ++++++++ src/Router.php | 13 +++++++++++++ 8 files changed, 94 insertions(+) create mode 100644 .gitignore create mode 100644 CHANGELOG.md create mode 100644 LICENSE create mode 100644 README.md create mode 100644 composer.json create mode 100644 composer.lock create mode 100644 examples/test.php create mode 100644 src/Router.php diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ecdf2d7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +vendor +.idea diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..a3738f6 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1 @@ +# Cherry-router diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..4aee716 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 Temuri Takalandze + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..93a6a09 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Cherry-Router +The Cherry-project Router + +**2019 © Cherry-project** diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..86c56e3 --- /dev/null +++ b/composer.json @@ -0,0 +1,25 @@ +{ + "name": "cherry-project/router", + "description": "Cherry-project Router", + "type": "library", + "keywords": ["cherry","router"], + "homepage": "https://github.com/ABGEO07/cherry-router", + "license": "MIT", + "authors": [ + { + "name": "ABGEO", + "email": "takalandzet@gmail.com", + "homepage": "http://www.abgeo.ga", + "role": "Developer" + } + ], + "minimum-stability": "dev", + "require": { + "php": ">=5.6.0" + }, + "autoload": { + "psr-4": { + "Cherry\\": "src/" + } + } +} diff --git a/composer.lock b/composer.lock new file mode 100644 index 0000000..66fd42e --- /dev/null +++ b/composer.lock @@ -0,0 +1,20 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", + "This file is @generated automatically" + ], + "hash": "91b2ab3d450c1045ada04c044f6c007c", + "content-hash": "581e6dac62919bed4dffd93a9fae2879", + "packages": [], + "packages-dev": [], + "aliases": [], + "minimum-stability": "dev", + "stability-flags": [], + "prefer-stable": false, + "prefer-lowest": false, + "platform": { + "php": ">=5.6.0" + }, + "platform-dev": [] +} diff --git a/examples/test.php b/examples/test.php new file mode 100644 index 0000000..3f36e15 --- /dev/null +++ b/examples/test.php @@ -0,0 +1,8 @@ + + */ +class Router +{ +} \ No newline at end of file