-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
76 lines (76 loc) · 1.43 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
70
71
72
73
74
75
76
{
"config": {
"platform": {
"php": "8.0"
}
},
"name": "ryunosuke/dbml",
"type": "library",
"description": "Database Manipulation Layer",
"license": "MIT",
"authors": [
{
"name": "ryunosuke",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"doctrine/dbal": "^3.8",
"psr/simple-cache": "2.*|3.*",
"ryunosuke/utility-attribute": "1.*"
},
"require-dev": {
"phpunit/phpunit": "9.*",
"ryunosuke/phpunit-extension": "4.*",
"ryunosuke/simple-cache": "1.*",
"ryunosuke/simple-logger": "1.*",
"ryunosuke/functions": "2.0.*",
"ryunosuke/polyfill-enum": "1.*"
},
"autoload": {
"psr-4": {
"ryunosuke\\dbml\\": "src/dbml",
"ryunosuke\\dbal\\": "src/dbal"
},
"files": [
"src/functions.stub"
]
},
"autoload-dev": {
"psr-4": {
"ryunosuke\\Test\\": "tests/Test"
},
"files": [
"tests/functions.php"
]
},
"scripts": {
"build": [
"@export",
"@diff",
"@test"
],
"export": [
"export-function",
"exclude-internal"
],
"patch": [
"@php bin/transport.php patch"
],
"diff": [
"@php bin/transport.php diff"
],
"test": [
"vendor/bin/phpunit --configuration=tests/phpunit.xml"
],
"post-install-cmd": [
"@export",
"@patch"
],
"post-update-cmd": [
"@export",
"@patch"
]
}
}