Skip to content

Commit

Permalink
Update dev dependencies; prepare to release
Browse files Browse the repository at this point in the history
  • Loading branch information
roxblnfk committed Dec 21, 2023
1 parent f68dd1b commit 74d6744
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

v2.7.1 (22.12.2023)
-------------------
- Fix setting `precision` and `scale` through attributes by @msmakouz (#148)
- Fix quoting with an underscore at the beginning by @msmakouz (#151)
- Fix behavior of the `Column::type()` method by adding default size to column type mappings by @msmakouz (#150)

v2.7.0 (04.12.2023)
-------------------
- Add `varbinary` support in MySQL; optimize `size` attribute by @msmakouz (#146)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ Make sure that your server is configured with following PHP version and extensio

To install the component:

```
$ composer require cycle/database
```bash
composer require cycle/database
```

## Example
Expand Down
36 changes: 34 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,42 @@
"name": "cycle/database",
"type": "library",
"description": "DBAL, schema introspection, migration and pagination",
"keywords": ["dbal", "database", "mysql", "mssql", "sqlite", "postgresql", "orm", "sql", "query-builder"],
"license": "MIT",
"conflict": {
"spiral/database": "*"
},
"homepage": "https://cycle-orm.dev",
"support": {
"issues": "https://github.com/cycle/database/issues",
"source": "https://github.com/cycle/database",
"docs": "https://cycle-orm.dev/docs",
"chat": "https://discord.gg/TFeEmCs"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/roadrunner-server"
}
],
"authors": [
{
"name": "Anton Titov (wolfy-j)",
"email": "[email protected]"
},
{
"name": "Aleksei Gagarin (roxblnfk)",
"email": "[email protected]"
},
{
"name": "Maksim Smakouz (msmakouz)",
"email": "[email protected]"
},
{
"name": "Pavel Butchnev (butschster)",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"ext-pdo": "*",
Expand All @@ -27,8 +59,8 @@
"infection/infection": "^0.26.10",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.5",
"spiral/tokenizer": "^2.13",
"vimeo/psalm": "^4.23"
"spiral/tokenizer": "^2.14 | ^3.0",
"vimeo/psalm": "^5.18"
},
"autoload-dev": {
"psr-4": {
Expand Down

0 comments on commit 74d6744

Please sign in to comment.