-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
69 lines (69 loc) · 1.85 KB
/
composer.json
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
{
"name": "smalldb/libsmalldb",
"description": "Smalldb: State machine abstraction layer",
"license": "Apache-2.0",
"homepage": "https://smalldb.org/",
"authors": [
{
"name": "Josef Kufner",
"email": "[email protected]"
}
],
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/jkufner/annotations"
}
],
"require": {
"php": ">=7.4",
"ext-dom": "*",
"ext-json": "*",
"smalldb/annotations": "^2.0+1.10.4"
},
"conflict": {
"smalldb/smalldb-symfony-bundle": "<0.2-dev"
},
"autoload": {
"psr-4": {
"Smalldb\\StateMachine\\": "src/",
"Smalldb\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Smalldb\\StateMachine\\Test\\": "test/",
"Smalldb\\GeneratedCode\\": "test/output/generated/"
}
},
"require-dev": {
"smalldb/doc-tools": "^2.0",
"ext-pdo": "*",
"ext-sqlite3": "*",
"doctrine/dbal": "~2.9",
"doctrine/doctrine-bundle": "*",
"doctrine/orm": "^2.5.11",
"phpstan/extension-installer": ">=1.0",
"phpstan/phpstan-phpunit": ">=0.11",
"phpstan/phpstan-symfony": ">=0.11",
"phpstan/phpstan": ">=0.11",
"phpunit/phpunit": "^8.0",
"psr/container": ">=1.0",
"psr/event-dispatcher": ">=1.0",
"symfony/config": "~5.1",
"symfony/dependency-injection": "~5.1",
"symfony/form": "~5.1",
"symfony/security-core": "~5.1",
"symfony/validator": "~5.1",
"symfony/yaml": "~5.1"
},
"suggest": {
"doctrine/dbal": "SQL database support",
"ext-pdo": "SQL database support"
}
}