-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.49 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
{
"name": "enobrev/php-orm",
"license": "MIT",
"version": "0.9.0-dev",
"type": "library",
"description": "Simple ORM",
"authors": [
{
"name": "Mark Armendariz",
"email": "src@enobrev.com"
}
],
"config": {
"platform": {
"php": "8.1"
},
"sort-packages": true
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/enobrev/php-tools"
},
{
"type": "vcs",
"url": "https://github.com/enobrev/php-orm"
},
{
"type": "git",
"url": "https://github.com/enobrev/garden-cli.git"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-readline": "*",
"adbario/php-dot-notation": "^3.1",
"enobrev/php-tools": "dev-master",
"laminas/laminas-httphandlerrunner": "^2.0",
"twig/twig": "^3.1",
"vanilla/garden-cli": "dev-master"
},
"require-dev": {
"ext-sqlite3": "*",
"phpunit/phpunit": "^9.4"
},
"autoload": {
"psr-4": {
"Enobrev\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Enobrev\\ORM\\Mock\\Table\\": "tests/Mock/Table",
"Enobrev\\ORM\\Mock\\": "tests/Mock/"
}
},
"bin": [
"bin/generate_tables.php",
"bin/sql_to_json.php"
]
}