Skip to content

Commit 74d6744

Browse files
committed
Update dev dependencies; prepare to release
1 parent f68dd1b commit 74d6744

File tree

3 files changed

+42
-4
lines changed

3 files changed

+42
-4
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
v2.7.1 (22.12.2023)
4+
-------------------
5+
- Fix setting `precision` and `scale` through attributes by @msmakouz (#148)
6+
- Fix quoting with an underscore at the beginning by @msmakouz (#151)
7+
- Fix behavior of the `Column::type()` method by adding default size to column type mappings by @msmakouz (#150)
8+
39
v2.7.0 (04.12.2023)
410
-------------------
511
- Add `varbinary` support in MySQL; optimize `size` attribute by @msmakouz (#146)

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ Make sure that your server is configured with following PHP version and extensio
3131

3232
To install the component:
3333

34-
```
35-
$ composer require cycle/database
34+
```bash
35+
composer require cycle/database
3636
```
3737

3838
## Example

composer.json

+34-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,42 @@
22
"name": "cycle/database",
33
"type": "library",
44
"description": "DBAL, schema introspection, migration and pagination",
5+
"keywords": ["dbal", "database", "mysql", "mssql", "sqlite", "postgresql", "orm", "sql", "query-builder"],
56
"license": "MIT",
67
"conflict": {
78
"spiral/database": "*"
89
},
10+
"homepage": "https://cycle-orm.dev",
11+
"support": {
12+
"issues": "https://github.com/cycle/database/issues",
13+
"source": "https://github.com/cycle/database",
14+
"docs": "https://cycle-orm.dev/docs",
15+
"chat": "https://discord.gg/TFeEmCs"
16+
},
17+
"funding": [
18+
{
19+
"type": "github",
20+
"url": "https://github.com/sponsors/roadrunner-server"
21+
}
22+
],
23+
"authors": [
24+
{
25+
"name": "Anton Titov (wolfy-j)",
26+
"email": "[email protected]"
27+
},
28+
{
29+
"name": "Aleksei Gagarin (roxblnfk)",
30+
"email": "[email protected]"
31+
},
32+
{
33+
"name": "Maksim Smakouz (msmakouz)",
34+
"email": "[email protected]"
35+
},
36+
{
37+
"name": "Pavel Butchnev (butschster)",
38+
"email": "[email protected]"
39+
}
40+
],
941
"require": {
1042
"php": ">=8.0",
1143
"ext-pdo": "*",
@@ -27,8 +59,8 @@
2759
"infection/infection": "^0.26.10",
2860
"mockery/mockery": "^1.5",
2961
"phpunit/phpunit": "^9.5",
30-
"spiral/tokenizer": "^2.13",
31-
"vimeo/psalm": "^4.23"
62+
"spiral/tokenizer": "^2.14 | ^3.0",
63+
"vimeo/psalm": "^5.18"
3264
},
3365
"autoload-dev": {
3466
"psr-4": {

0 commit comments

Comments
 (0)