-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 892 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 892 Bytes
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
{
"name" : "madwings/insanedb",
"description" : "InasaneDB is a Database Toolkit for PHP forked from CodeIgniter 3",
"type": "project",
"homepage": "https://github.com/madwings/InsaneDB",
"license": "MIT",
"support": {
"wiki": "https://github.com/madwings/InsaneDB/wiki",
"source": "https://github.com/madwings/InsaneDB"
},
"require": {
"php": ">=7.1"
},
"scripts": {
"test:coverage": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --color=always --coverage-text --configuration tests/travis/sqlite.phpunit.xml"
],
"post-install-cmd": [
"sed -i s/name{0}/name[0]/ vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/vfsStream.php"
],
"post-update-cmd": [
"sed -i s/name{0}/name[0]/ vendor/mikey179/vfsstream/src/main/php/org/bovigo/vfs/vfsStream.php"
]
},
"require-dev": {
"mikey179/vfsstream": "1.6.*",
"phpunit/phpunit": "4.* || 5.* || 9.*"
}
}