|
1 | 1 | { |
2 | 2 | "name": "cycle/database", |
3 | | - "type": "library", |
4 | 3 | "description": "DBAL, schema introspection, migration and pagination", |
5 | | - "keywords": ["dbal", "database", "mysql", "mssql", "sqlite", "postgresql", "orm", "sql", "query-builder"], |
6 | 4 | "license": "MIT", |
7 | | - "conflict": { |
8 | | - "spiral/database": "*" |
9 | | - }, |
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/spiralphp" |
16 | | - }, |
17 | | - "funding": [ |
18 | | - { |
19 | | - "type": "github", |
20 | | - "url": "https://github.com/sponsors/cycle" |
21 | | - } |
| 5 | + "type": "library", |
| 6 | + "keywords": [ |
| 7 | + "dbal", |
| 8 | + "database", |
| 9 | + "mysql", |
| 10 | + "mssql", |
| 11 | + "sqlite", |
| 12 | + "postgresql", |
| 13 | + "orm", |
| 14 | + "sql", |
| 15 | + "query-builder" |
22 | 16 | ], |
23 | 17 | "authors": [ |
24 | 18 | { |
|
38 | 32 | "email": "pavel.buchnev@spiralscout.com" |
39 | 33 | } |
40 | 34 | ], |
| 35 | + "homepage": "https://cycle-orm.dev", |
| 36 | + "support": { |
| 37 | + "issues": "https://github.com/cycle/database/issues", |
| 38 | + "chat": "https://discord.gg/spiralphp", |
| 39 | + "source": "https://github.com/cycle/database", |
| 40 | + "docs": "https://cycle-orm.dev/docs" |
| 41 | + }, |
| 42 | + "funding": [ |
| 43 | + { |
| 44 | + "type": "github", |
| 45 | + "url": "https://github.com/sponsors/cycle" |
| 46 | + } |
| 47 | + ], |
41 | 48 | "require": { |
42 | 49 | "php": ">=8.0", |
43 | 50 | "ext-pdo": "*", |
|
46 | 53 | "spiral/pagination": "^2.8 || ^3.0", |
47 | 54 | "symfony/polyfill-php83": "^1.28" |
48 | 55 | }, |
49 | | - "autoload": { |
50 | | - "files": [ |
51 | | - "src/polyfill.php", |
52 | | - "src/functions_polyfill.php" |
53 | | - ], |
54 | | - "psr-4": { |
55 | | - "Cycle\\Database\\": "src" |
56 | | - } |
57 | | - }, |
58 | 56 | "require-dev": { |
| 57 | + "ergebnis/composer-normalize": "^2.42", |
59 | 58 | "infection/infection": "^0.26.10", |
60 | 59 | "mockery/mockery": "^1.5", |
61 | 60 | "phpunit/phpunit": "^9.5", |
62 | | - "spiral/tokenizer": "^2.14 | ^3.0", |
| 61 | + "spiral/tokenizer": "^2.14 || ^3.0", |
63 | 62 | "vimeo/psalm": "^5.18" |
64 | 63 | }, |
| 64 | + "conflict": { |
| 65 | + "spiral/database": "*" |
| 66 | + }, |
| 67 | + "minimum-stability": "dev", |
| 68 | + "prefer-stable": true, |
| 69 | + "autoload": { |
| 70 | + "psr-4": { |
| 71 | + "Cycle\\Database\\": "src" |
| 72 | + }, |
| 73 | + "files": [ |
| 74 | + "src/polyfill.php", |
| 75 | + "src/functions_polyfill.php" |
| 76 | + ] |
| 77 | + }, |
65 | 78 | "autoload-dev": { |
66 | 79 | "psr-4": { |
67 | 80 | "Cycle\\Database\\Tests\\": "tests/Database" |
68 | 81 | } |
69 | 82 | }, |
| 83 | + "config": { |
| 84 | + "allow-plugins": { |
| 85 | + "ergebnis/composer-normalize": true, |
| 86 | + "infection/extension-installer": true |
| 87 | + }, |
| 88 | + "sort-packages": true |
| 89 | + }, |
70 | 90 | "scripts": { |
71 | 91 | "test": [ |
72 | 92 | "phpcs --standard=phpcs.xml", |
73 | 93 | "psalm --no-cache", |
74 | 94 | "phpunit" |
75 | 95 | ] |
76 | | - }, |
77 | | - "config": { |
78 | | - "sort-packages": true, |
79 | | - "allow-plugins": { |
80 | | - "infection/extension-installer": true |
81 | | - } |
82 | | - }, |
83 | | - "minimum-stability": "dev", |
84 | | - "prefer-stable": true |
| 96 | + } |
85 | 97 | } |
0 commit comments