-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
93 lines (93 loc) · 3.63 KB
/
composer.json
File metadata and controls
93 lines (93 loc) · 3.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "ifcastle/aql",
"type": "project",
"description": "Abstract Query Language - Monorepo",
"keywords": ["aql", "query", "language", "orm", "database", "abstraction"],
"license": "MIT",
"authors": [
{
"name": "Edmond Dantes",
"email": "edmondifthen@proton.me"
}
],
"repositories": [
{ "type": "path", "url": "./packages/*", "options": { "symlink": true } }
],
"require": {
"php": ">=8.5",
"ext-pdo": "*",
"ifcastle/aql-amphp": "*",
"ifcastle/aql-aspects": "*",
"ifcastle/aql-dsl": "*",
"ifcastle/aql-dto": "*",
"ifcastle/aql-entity": "*",
"ifcastle/aql-executor": "*",
"ifcastle/aql-filesystem": "*",
"ifcastle/aql-generator": "*",
"ifcastle/aql-migration-tool": "*",
"ifcastle/aql-mysql": "*",
"ifcastle/aql-pdodriver": "*",
"ifcastle/aql-postaction": "*",
"ifcastle/aql-postgresql": "*",
"ifcastle/aql-redis": "*",
"ifcastle/aql-result": "*",
"ifcastle/aql-service": "*",
"ifcastle/aql-sqldriver": "*",
"ifcastle/aql-sqlite": "*",
"ifcastle/aql-storage": "*",
"ifcastle/aql-storagepool": "*",
"ifcastle/aql-telemetry": "*",
"ifcastle/aql-transaction": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.2",
"phpstan/phpstan": "^2.1",
"rector/rector": "^2.3",
"ifcastle/codestyle": "^0.4.0"
},
"autoload-dev": {
"psr-4": {
"IfCastle\\AQL\\": "tests/",
"IfCastle\\AQL\\Amphp\\": "packages/amphp/tests/",
"IfCastle\\AQL\\Aspects\\": "packages/aspects/tests/",
"IfCastle\\AQL\\Dsl\\": "packages/dsl/tests/",
"IfCastle\\AQL\\DTO\\": "packages/dto/tests/",
"IfCastle\\AQL\\Entity\\": "packages/entity/tests/",
"IfCastle\\AQL\\Executor\\": "packages/executor/tests/",
"IfCastle\\AQL\\FileSystem\\": "packages/filesystem/tests/",
"IfCastle\\AQL\\Generator\\": "packages/generator/tests/",
"IfCastle\\AQL\\MigrationTool\\": "packages/migration-tool/tests/",
"IfCastle\\AQL\\MySql\\": "packages/mysql/tests/",
"IfCastle\\AQL\\PdoDriver\\": "packages/pdodriver/tests/",
"IfCastle\\AQL\\PostAction\\": "packages/postaction/tests/",
"IfCastle\\AQL\\PostgreSql\\": "packages/postgresql/tests/",
"IfCastle\\AQL\\Redis\\": "packages/redis/tests/",
"IfCastle\\AQL\\Result\\": "packages/result/tests/",
"IfCastle\\AQL\\Service\\": "packages/service/tests/",
"IfCastle\\AQL\\SqlDriver\\": "packages/sqldriver/tests/",
"IfCastle\\AQL\\SQLite\\": "packages/sqlite/tests/",
"IfCastle\\AQL\\Storage\\": "packages/storage/tests/",
"IfCastle\\AQL\\StoragePool\\": "packages/storagepool/tests/",
"IfCastle\\AQL\\Telemetry\\": "packages/telemetry/tests/",
"IfCastle\\AQL\\Transaction\\": "packages/transaction/tests/"
}
},
"scripts": {
"test": "phpunit --display-warnings --display-errors --display-notices",
"analyse": "phpstan analyse --memory-limit=1G",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"rector": "rector process --dry-run",
"rector:fix": "rector process"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"*": true
},
"optimize-autoloader": true,
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true
}