Skip to content
Snippets Groups Projects
Commit 3629ef57 authored by Jan Kuchař's avatar Jan Kuchař
Browse files

Update README.md

parent 5f2fabc5
No related branches found
No related tags found
No related merge requests found
Pipeline #20537 passed
......@@ -9,4 +9,40 @@ Idea: make statically typed what is possible and prevent typos.
- do not write it twice (sync database to database-access-layer classes)
- do not screw up database - support for rich types as UUID, arrays, ... (easy to add more)
## Installation
This is private repo, so you have to add repositories to you `composer.json` manually. This tells composer where to find our packages.
````json
{
"repositories": [
{
"type": "vcs",
"url": "git@gitlab.grifart.local:grifart/tables.git"
},
{
"type": "vcs",
"url": "git@gitlab.grifart.local:jkuchar1/assert-function-signature.git"
},
{
"type": "vcs",
"url": "git@gitlab.grifart.local:grifart/class-scaffolder.git"
}
]
}
````
Then install dependencies.
````bash
# 1. install grifart/tables:
# use for latest stable version:
composer require grifart/tables
# use for latest dev version:
composer require grifart/tables:dev-master
# 2. install grifart/class-scaffolder for automatic defintions generation:
composer require grifart/class-scaffolder
````
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment