-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
64 lines (64 loc) · 1.53 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": "igniphp/storage",
"description": "Minimalistic entity framework with multi database support.",
"keywords": [
"ODM",
"ORM",
"Entity framework",
"Unit of work",
"Identity map",
"Mysql",
"Sqlite",
"Mongo",
"Pgsql",
"php71"
],
"license": "MIT",
"authors": [
{
"name": "Dawid <krac> Kraczkowski",
"email": "dawid.kraczkowski@gmail.com"
}
],
"suggest": {
"ext-mongodb": "For mongodb support",
"ext-pdo_mysql": "For MySQL or MariaDB database support",
"ext-pdo_pqsql": "For PostgreSQL database support",
"ext-sqlite3": "For SQLite database support",
"ext-base58": "For better uuid generation performance"
},
"require": {
"php": ">=7.1.0",
"ext-pdo": "*",
"ext-hash": "*",
"ext-json": "*",
"psr/simple-cache": ">=1.0.0",
"igniphp/exception": ">=1.0.0",
"igniphp/reflection-api": ">=1.0.2",
"igniphp/uuid": ">=2.0.0",
"doctrine/annotations": ">=1.6",
"cache/array-adapter": ">=1.0",
"cache/apcu-adapter": ">=1.0",
"cache/apc-adapter": ">=1.0"
},
"require-dev": {
"phpunit/phpunit": ">=5.7.0",
"mockery/mockery": ">=0.9.4",
"phpunit/php-code-coverage": ">=4.0.0",
"phpstan/phpstan": ">=0.9.2"
},
"autoload": {
"psr-4": {
"Igni\\Storage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Igni\\Tests\\": "tests/"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse src --level=0",
"coverage": "vendor/bin/phpunit --coverage-html ../coverage"
}
}