From 921be95894437447e750ad4510cb6065f611b1e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Novotn=C3=BD?= Date: Sat, 4 Jan 2020 15:51:48 +0100 Subject: [PATCH] Init package --- .editorconfig | 15 ++++ .gitattributes | 18 ++++ .github/ISSUE_TEMPLATE.md | 27 ++++++ .github/PULL_REQUEST_TEMPLATE.md | 43 ++++++++++ .gitignore | 8 ++ .scrutinizer.yml | 143 +++++++++++++++++++++++++++++++ .styleci.yml | 11 +++ .travis.yml | 29 +++++++ CHANGELOG.md | 25 ++++++ LICENSE.md | 21 +++++ README.md | 99 +++++++++++++++++++++ composer.json | 61 +++++++++++++ docs/CODE_OF_CONDUCT.md | 74 ++++++++++++++++ docs/CONTRIBUTING.md | 30 +++++++ phpstan.neon.dist | 2 + phpunit.xml.dist | 37 ++++++++ ruleset.xml | 4 + src/Contracts/.gitkeep | 0 src/Definitions/.gitkeep | 0 src/Exceptions/.gitkeep | 0 src/Model/Aggregates/.gitkeep | 0 src/Model/Entities/.gitkeep | 0 src/Model/Factories/.gitkeep | 0 src/Model/Repositories/.gitkeep | 0 src/Model/Values/.gitkeep | 0 src/Services/.gitkeep | 0 tests/AbstractTestCase.php | 31 +++++++ tests/Unit/BasicTest.php | 13 +++ 28 files changed, 691 insertions(+) create mode 100755 .editorconfig create mode 100755 .gitattributes create mode 100755 .github/ISSUE_TEMPLATE.md create mode 100755 .github/PULL_REQUEST_TEMPLATE.md create mode 100755 .gitignore create mode 100644 .scrutinizer.yml create mode 100755 .styleci.yml create mode 100644 .travis.yml create mode 100755 CHANGELOG.md create mode 100755 LICENSE.md create mode 100755 README.md create mode 100755 composer.json create mode 100755 docs/CODE_OF_CONDUCT.md create mode 100755 docs/CONTRIBUTING.md create mode 100644 phpstan.neon.dist create mode 100644 phpunit.xml.dist create mode 100644 ruleset.xml create mode 100644 src/Contracts/.gitkeep create mode 100644 src/Definitions/.gitkeep create mode 100644 src/Exceptions/.gitkeep create mode 100644 src/Model/Aggregates/.gitkeep create mode 100644 src/Model/Entities/.gitkeep create mode 100644 src/Model/Factories/.gitkeep create mode 100644 src/Model/Repositories/.gitkeep create mode 100644 src/Model/Values/.gitkeep create mode 100644 src/Services/.gitkeep create mode 100644 tests/AbstractTestCase.php create mode 100644 tests/Unit/BasicTest.php diff --git a/.editorconfig b/.editorconfig new file mode 100755 index 0000000..cd8eb86 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +; This file is for unifying the coding style for different editors and IDEs. +; More information at http://editorconfig.org + +root = true + +[*] +charset = utf-8 +indent_size = 4 +indent_style = space +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false diff --git a/.gitattributes b/.gitattributes new file mode 100755 index 0000000..e722e49 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,18 @@ +# Path-based git attributes +# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html + +# Ignore all test and documentation with "export-ignore". +/.github export-ignore +/bin export-ignore +/docs export-ignore +/tests export-ignore +/.editorconfig export-ignore +/.gitattributes export-ignore +/.gitignore export-ignore +/.scrutinizer.yml export-ignore +/.styleci.yml export-ignore +/.travis.yml export-ignore +/CHANGELOG.md export-ignore +/phpstan.neon.dist export-ignore +/phpunit.xml.dist export-ignore +/ruleset.xml export-ignore diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100755 index 0000000..eb0d8e9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,27 @@ + + +## Detailed description + +Provide a detailed description of the change or addition you are proposing. + +Make it clear if the issue is a bug, an enhancement or just a question. + +## Context + +Why is this change important to you? How would you use it? + +How can it benefit other users? + +## Possible implementation + +Not obligatory, but suggest an idea for implementing addition or change. + +## Your environment + +Include as many relevant details about the environment you experienced the bug in and how to reproduce it. + +* Version used (e.g. PHP 7.1, HHVM 3): +* Operating system and version (e.g. Ubuntu 16.04, Windows 10): +* Link to your project: +* ... +* ... diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100755 index 0000000..0d25c25 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,43 @@ + + +## Description + +Describe your changes in detail. + +## Motivation and context + +Why is this change required? What problem does it solve? + +If it fixes an open issue, please link to the issue here (if you write `fixes #num` +or `closes #num`, the issue will be automatically closed when the pull is accepted.) + +## How has this been tested? + +Please describe in detail how you tested your changes. + +Include details of your testing environment, and the tests you ran to +see how your change affects other areas of the code, etc. + +## Screenshots (if appropriate) + +## Types of changes + +What types of changes does your code introduce? Put an `x` in all the boxes that apply: +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Breaking change (fix or feature that would cause existing functionality to change) + +## Checklist: + +Go over all the following points, and put an `x` in all the boxes that apply. + +Please, please, please, don't send your pull request until all of the boxes are ticked. Once your pull request is created, it will trigger a build on our [continuous integration](http://www.phptherightway.com/#continuous-integration) server to make sure your [tests and code style pass](https://help.github.com/articles/about-required-status-checks/). + +- [ ] I have read the **[CONTRIBUTING](../docs/CONTRIBUTING.md)** document. +- [ ] My pull request addresses exactly one patch/feature. +- [ ] I have created a branch for this patch/feature. +- [ ] Each individual commit in the pull request is meaningful. +- [ ] I have added tests to cover my changes. +- [ ] If my change requires a change to the documentation, I have updated it accordingly. + +If you're unsure about any of these, don't hesitate to ask. We're here to help! diff --git a/.gitignore b/.gitignore new file mode 100755 index 0000000..0d33b6e --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +/.idea/ +/build/ +/vendor/ +*.env +composer.lock +coverage.clover +phpunit.xml + diff --git a/.scrutinizer.yml b/.scrutinizer.yml new file mode 100644 index 0000000..c63b89b --- /dev/null +++ b/.scrutinizer.yml @@ -0,0 +1,143 @@ +filter: + excluded_paths: + - 'tests/*' + +checks: + php: + code_rating: true + duplication: true + remove_extra_empty_lines: true + remove_php_closing_tag: true + remove_trailing_whitespace: true + fix_use_statements: + remove_unused: true + preserve_multiple: false + preserve_blanklines: true + order_alphabetically: true + fix_php_opening_tag: true + fix_linefeed: true + fix_line_ending: true + fix_identation_4spaces: true + fix_doc_comments: true + newline_at_end_of_file: true + naming_conventions: + local_variable: '^[a-z][a-zA-Z0-9]*$' + utility_class_name: '^[A-Z][a-zA-Z0-9]*$' + constant_name: '^[A-Z][A-Z0-9]*(?:_[A-Z0-9]+)*$' + property_name: '^[a-z][a-zA-Z0-9]*$' + method_name: '^((?:[a-z]|__)[a-zA-Z0-9]*|test[A-Z][_a-zA-Z0-9]*)$' + parameter_name: '^[a-z][a-zA-Z0-9]*$' + interface_name: '^[A-Z][a-zA-Z0-9]*Interface$' + type_name: '^(m[0-9a-z_]+|[A-Z][a-zA-Z0-9]*)$' + exception_name: '^[A-Z][a-zA-Z0-9]*Exception$' + isser_method_name: '^(?:is|can|has|should|may|supports)' + +coding_style: + php: + indentation: + general: + use_tabs: false + size: 4 + switch: + indent_case: true + spaces: + general: + linefeed_character: newline + before_parentheses: + function_declaration: false + closure_definition: true + function_call: false + if: true + for: true + while: true + switch: true + catch: true + array_initializer: false + around_operators: + assignment: true + logical: true + equality: true + relational: true + bitwise: true + additive: true + multiplicative: true + shift: true + unary_additive: false + concatenation: true + negation: false + before_left_brace: + class: true + function: true + if: true + else: true + for: true + while: true + do: true + switch: true + try: true + catch: true + finally: true + before_keywords: + else: true + while: true + catch: true + finally: true + within: + brackets: false + array_initializer: false + grouping: false + function_call: false + function_declaration: false + if: false + for: false + while: false + switch: false + catch: false + type_cast: false + ternary_operator: + before_condition: true + after_condition: true + before_alternative: true + after_alternative: true + in_short_version: false + other: + before_comma: false + after_comma: true + before_semicolon: false + after_semicolon: true + after_type_cast: true + braces: + classes_functions: + class: new-line + function: new-line + closure: end-of-line + if: + opening: end-of-line + always: true + else_on_new_line: false + for: + opening: end-of-line + always: true + while: + opening: end-of-line + always: true + do_while: + opening: end-of-line + always: true + while_on_new_line: false + switch: + opening: end-of-line + try: + opening: end-of-line + catch_on_new_line: false + finally_on_new_line: false + upper_lower_casing: + keywords: + general: lower + constants: + true_false_null: lower + +tools: + external_code_coverage: + timeout: 2400 + runs: 1 \ No newline at end of file diff --git a/.styleci.yml b/.styleci.yml new file mode 100755 index 0000000..1027d9e --- /dev/null +++ b/.styleci.yml @@ -0,0 +1,11 @@ +preset: psr2 + +enabled: + - blank_line_before_try + - blank_line_before_catch + - blank_line_before_return + - no_spaces_after_function_name + +finder: + name: + - "*.sphp" \ No newline at end of file diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..cc826c1 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,29 @@ +dist: trusty +language: php + +php: + - 7.1 + - 7.2 + - 7.3 + - 7.4 + +sudo: false + +cache: + directories: + - $HOME/.composer/cache + +before_script: + - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist + +script: + - vendor/bin/phpcs --standard=./ruleset.xml src/ + - vendor/bin/phpstan analyse -l 7 -c phpstan.neon.dist src/ + - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover + +after_script: + - | + if [[ "$TRAVIS_PHP_VERSION" != '7.4' ]]; then + wget https://scrutinizer-ci.com/ocular.phar + php ocular.phar code-coverage:upload --format=php-clover coverage.clover + fi diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100755 index 0000000..649dd77 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,25 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). + +## [0.1.0] - 2020-01-01 +### Added +- Add new feature + +### Changed +- Changed existing functionality. + +### Deprecated +- Soon-to-be removed features. + +### Removed +- Removed features. + +### Fixed +- Fixed any bug. + +### Security +- Fixed vulnerabilities. diff --git a/LICENSE.md b/LICENSE.md new file mode 100755 index 0000000..7243edf --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +# The MIT License (MIT) + +Copyright (c) 2020 Tomáš Novotný + +> 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 100755 index 0000000..d61c75d --- /dev/null +++ b/README.md @@ -0,0 +1,99 @@ +# Project name + +**Created as part of [inspishop][link-inspishop] e-commerce platform by [inspirum][link-inspirum] team.** + +[![Latest Stable Version][ico-packagist-stable]][link-packagist-stable] +[![Build Status][ico-travis]][link-travis] +[![Coverage Status][ico-scrutinizer]][link-scrutinizer] +[![Quality Score][ico-code-quality]][link-code-quality] +[![PHPStan][ico-phpstan]][link-phpstan] +[![Total Downloads][ico-packagist-download]][link-packagist-download] +[![Software License][ico-license]][link-licence] + +- Simple description + + +## Usage example + +*All the code snippets shown here are modified for clarity, so they may not be executable.* + +```php + +``` + + +## System requirements + +* [PHP 7.1+](http://php.net/releases/7_1_0.php) +* [ext-curl](http://php.net/curl) +* [ext-json](http://php.net/json) + + +## Installation + +```bash +$ composer require inspirum/project-name +``` + + +## Usage + + +## Testing + +To run unit tests, run: + +```bash +$ composer test:test +``` + +To show coverage, run: + +```bash +$ composer test:coverage +``` + + +## Contributing + +Please see [CONTRIBUTING][link-contributing] and [CODE_OF_CONDUCT][link-code-of-conduct] for details. + + +## Security + +If you discover any security related issues, please email tomas.novotny@inspirum.cz instead of using the issue tracker. + + +## Credits + +- [Tomáš Novotný](https://github.com/tomas-novotny) +- [All Contributors][link-contributors] + + +## License + +The MIT License (MIT). Please see [License File][link-licence] for more information. + + +[ico-license]: https://img.shields.io/github/license/inspirum/project-name.svg?style=flat-square&colorB=blue +[ico-travis]: https://img.shields.io/travis/inspirum/project-name/master.svg?branch=master&style=flat-square +[ico-scrutinizer]: https://img.shields.io/scrutinizer/coverage/g/inspirum/project-name/master.svg?style=flat-square +[ico-code-quality]: https://img.shields.io/scrutinizer/g/inspirum/project-name.svg?style=flat-square +[ico-packagist-stable]: https://img.shields.io/packagist/v/inspirum/project-name.svg?style=flat-square&colorB=blue +[ico-packagist-download]: https://img.shields.io/packagist/dt/inspirum/project-name.svg?style=flat-square&colorB=blue +[ico-phpstan]: https://img.shields.io/badge/style-level%207-brightgreen.svg?style=flat-square&label=phpstan + +[link-author]: https://github.com/inspirum +[link-contributors]: https://github.com/inspirum/project-name/contributors +[link-licence]: ./LICENSE.md +[link-changelog]: ./CHANGELOG.md +[link-contributing]: ./docs/CONTRIBUTING.md +[link-code-of-conduct]: ./docs/CODE_OF_CONDUCT.md +[link-travis]: https://travis-ci.org/inspirum/project-name +[link-scrutinizer]: https://scrutinizer-ci.com/g/inspirum/project-name/code-structure +[link-code-quality]: https://scrutinizer-ci.com/g/inspirum/project-name +[link-inspishop]: https://www.inspishop.cz/ +[link-inspirum]: https://www.inspirum.cz/ +[link-packagist-stable]: https://packagist.org/packages/inspirum/project-name +[link-packagist-download]: https://packagist.org/packages/inspirum/project-name +[link-phpstan]: https://github.com/phpstan/phpstan diff --git a/composer.json b/composer.json new file mode 100755 index 0000000..22d6104 --- /dev/null +++ b/composer.json @@ -0,0 +1,61 @@ +{ + "name": "inspirum/", + "description": "", + "keywords": [ + "inspirum", + "inspishop", + "laravel", + "memcached", + "mcrouter", + "cache" + ], + "homepage": "https://github.com/inspirum/", + "license": "MIT", + "type": "library", + "authors": [ + { + "name": "Tomáš Novotný", + "email": "tomas.novotny@inspirum.cz", + "role": "Developer" + } + ], + "require": { + "php": ">=7.1.3" + }, + "require-dev": { + "phpunit/phpunit": "^7.0|^8.0", + "squizlabs/php_codesniffer": "^3.3", + "mockery/mockery": "^1.2", + "phpstan/phpstan": "^0.10", + "phpstan/phpstan-mockery": "^0.10" + }, + "autoload": { + "psr-4": { + "Inspirum\\Project\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "Inspirum\\Project\\Tests\\": "tests" + } + }, + "scripts": { + "test:test": [ + "@phpunit" + ], + "test:coverage": [ + "@phpunit --coverage-html=./build/coverage" + ], + "style:check": [ + "@phpcs src tests", + "@phpstan -l 7 src" + ], + "style:fix": [ + "@phpcbf src tests" + ], + "phpunit": "./vendor/bin/phpunit", + "phpcs": "./vendor/bin/phpcs -p -s --standard=./ruleset.xml --extensions=php --colors --report-width=140 --runtime-set ignore_errors_on_exit 1", + "phpstan": "./vendor/bin/phpstan analyse -c phpstan.neon.dist", + "phpcbf": "./vendor/bin/phpcbf -p --standard=./ruleset.xml --extensions=php --runtime-set ignore_errors_on_exit 1" + } +} diff --git a/docs/CODE_OF_CONDUCT.md b/docs/CODE_OF_CONDUCT.md new file mode 100755 index 0000000..806dc24 --- /dev/null +++ b/docs/CODE_OF_CONDUCT.md @@ -0,0 +1,74 @@ +# Contributor Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to make participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, gender identity and expression, level of experience, +nationality, personal appearance, race, religion, or sexual identity and +orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or +advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at `tomas.novotny@inspirum.cz`. All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at [http://contributor-covenant.org/version/1/4][version] + +[homepage]: http://contributor-covenant.org +[version]: http://contributor-covenant.org/version/1/4/ diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md new file mode 100755 index 0000000..35df7e8 --- /dev/null +++ b/docs/CONTRIBUTING.md @@ -0,0 +1,30 @@ +# Contributing + +Contributions are **welcome** and will be fully **credited**. + + +## Pull Requests + +- **[PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)** - Check the code style with `$ composer check-style` and fix it with `$ composer fix-style`. + +- **Add tests!** - Your patch won't be accepted if it doesn't have tests. + +- **Document any change in behaviour** - Make sure the `README.md` and any other relevant documentation are kept up-to-date. + +- **Consider our release cycle** - We try to follow [SemVer v2.0.0](http://semver.org/). Randomly breaking public APIs is not an option. + +- **Create feature branches** - Don't ask us to pull from your master branch. + +- **One pull request per feature** - If you want to do more than one thing, send multiple pull requests. + +- **Send coherent history** - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please [squash them](http://www.git-scm.com/book/en/v2/Git-Tools-Rewriting-History#Changing-Multiple-Commit-Messages) before submitting. + + +## Running Tests + +```bash +$ composer test +``` + + +**Happy coding**! diff --git a/phpstan.neon.dist b/phpstan.neon.dist new file mode 100644 index 0000000..028f5d3 --- /dev/null +++ b/phpstan.neon.dist @@ -0,0 +1,2 @@ +includes: + - vendor/phpstan/phpstan-mockery/extension.neon \ No newline at end of file diff --git a/phpunit.xml.dist b/phpunit.xml.dist new file mode 100644 index 0000000..8bee37d --- /dev/null +++ b/phpunit.xml.dist @@ -0,0 +1,37 @@ + + + + + ./tests/Integration/ + + + ./tests/Unit/ + + + + + ./src + + src/ + src/Definitions + + + + + + + + + + + + + diff --git a/ruleset.xml b/ruleset.xml new file mode 100644 index 0000000..0204244 --- /dev/null +++ b/ruleset.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/Contracts/.gitkeep b/src/Contracts/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/Definitions/.gitkeep b/src/Definitions/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/Exceptions/.gitkeep b/src/Exceptions/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/Model/Aggregates/.gitkeep b/src/Model/Aggregates/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/Model/Entities/.gitkeep b/src/Model/Entities/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/Model/Factories/.gitkeep b/src/Model/Factories/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/Model/Repositories/.gitkeep b/src/Model/Repositories/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/Model/Values/.gitkeep b/src/Model/Values/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/Services/.gitkeep b/src/Services/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/tests/AbstractTestCase.php b/tests/AbstractTestCase.php new file mode 100644 index 0000000..9d7c6b7 --- /dev/null +++ b/tests/AbstractTestCase.php @@ -0,0 +1,31 @@ +assertTrue(true); + } +}