forked from bcit-ci/CodeIgniter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 972 Bytes
/
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
{
"description": "Fork of CodeIgniter 3",
"name": "nielbuys/framework",
"type": "project",
"homepage": "https://github.com/NielBuys/CodeIgniter",
"license": "MIT",
"config": {
"platform": {
"php": "7.4"
}
},
"support": {
"forum": "http://forum.codeigniter.com/",
"issues": "https://github.com/NielBuys/CodeIgniter/issues",
"source": "https://github.com/NielBuys/CodeIgniter"
},
"require": {
"php": ">=7.4"
},
"scripts": {
"test:coverage": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --color=always --coverage-text --configuration tests/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": "9.* || 10.* || 11.*"
}
}