-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
52 lines (52 loc) · 1.41 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
{
"name": "dragonrun1/person_db_skeleton",
"description": "Skeleton for common person database tables in MySQL, PostgreSQL, SQLite and Doctrine.",
"license": "BSD-3-Clause",
"version": "0.0.5",
"authors": [
{
"name": "Michael Cummings", "email": "dragonrun1@gmail.com"
}
],
"autoload": {
"psr-4": {
"PersonDBSkeleton\\": [
"bin/", "src/"
]
}
},
"autoload-dev": {
"psr-0": {
"Spec\\": "tests/specs/"
}
},
"config": {
"optimize-autoloader": true, "sort-packages": true
},
"require": {
"php": ">=7.3,<7.5",
"ext-PDO": ">=1.0.0",
"ext-SPL": "*",
"ext-json": "*",
"ext-pdo_mysql": "*",
"ext-sodium": "*",
"doctrine/migrations": "^2.2",
"doctrine/orm": "^2.7",
"dragonrun1/uuid64type": "^1.0.0",
"jdorn/sql-formatter": "^1.2",
"josegonzalez/dotenv": "^3.2"
},
"require-dev": {
"friends-of-phpspec/phpspec-code-coverage": "^4.3",
"phpspec/nyan-formatters": "dev-master",
"phpspec/phpspec": "^5.1.0",
"roave/security-advisories": "dev-master"
},
"repositories": {
"uuid64type": {
"type": "path", "url": "C:/repos/github/Dragonrun1/Uuid64Type", "options": {
"symlink": true
}
}
}
}