-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
66 lines (66 loc) · 1.72 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
65
66
{
"name": "liaison/revision",
"type": "library",
"description": "Seamless software updates library for CodeIgniter4 projects.",
"keywords": [
"software",
"updates",
"revision",
"codeigniter4"
],
"license": "MIT",
"authors": [
{
"name": "John Paul E. Balandan, CPA",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.0",
"ext-intl": "*",
"sebastian/diff": "^4.0",
"symfony/filesystem": "^5.1",
"symfony/process": "^5.1"
},
"require-dev": {
"ext-tokenizer": "*",
"codeigniter4/codeigniter4": "4.x-dev",
"friendsofphp/php-cs-fixer": "^3.0",
"nexusphp/cs-config": "^3.2",
"nexusphp/tachycardia": "^1.3",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^9.5"
},
"suggest": {
"ext-dom": "For using the XmlLogHandler."
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Liaison\\Revision\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Liaison\\Revision\\Tests\\": "tests/src/",
"Tests\\Support\\": "tests/_support/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/codeigniter4/codeigniter4",
"canonical": true
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"support": {
"issues": "https://github.com/paulbalandan/liaison-revision/issues",
"source": "https://github.com/paulbalandan/liaison-revision"
}
}