Skip to content

Commit

Permalink
implemented Installable class
Browse files Browse the repository at this point in the history
  • Loading branch information
Zrnik committed Jan 14, 2021
1 parent 5ba15b7 commit 7b60ce4
Show file tree
Hide file tree
Showing 16 changed files with 2,644 additions and 30 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/.phpunit.result.cache
/.idea/
/composer.lock
/vendor/
/docs/example.php
12 changes: 10 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"name": "zrnik/mksql",
"description": "MkSQL is a tool for keeping your tables up to date with PHP code. You can use it in your project or as a database preparation in your integration tests.",
"version": "v0.6.4",
"minimum-stability": "stable",
"minimum-stability": "dev",
"prefer-stable": true,
"type": "library",
"keywords": [
"sql",
Expand All @@ -20,6 +21,12 @@
"homepage": "https://stepan.zrnik.eu/"
}
],
"scripts": {
"phpstan": "phpstan analyse",
"phpunit": "phpunit",
"phpunit:unit": "phpunit --testsuite unit",
"phpunit:integration": "phpunit --testsuite integration"
},
"require": {
"php": ">=7.4",
"ext-pdo": "*",
Expand All @@ -28,7 +35,8 @@
},
"require-dev": {
"tracy/tracy": "^2.7",
"phpunit/phpunit": "^9"
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^0.12"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 7b60ce4

Please sign in to comment.