-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
55 lines (55 loc) · 1.11 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
{
"name": "tatter/patches",
"type": "library",
"description": "Module for updating CodeIgniter 4 projects",
"keywords": [
"codeigniter",
"codeigniter4",
"patches",
"composer",
"update",
"autoupdate"
],
"homepage": "https://github.com/tattersoftware/codeigniter4-patches",
"license": "MIT",
"authors": [
{
"name": "Matthew Gatner",
"email": "mgatner@tattersoftware.com",
"homepage": "https://tattersoftware.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"composer/composer": "^2.0",
"sebastian/diff": "^3.0"
},
"require-dev": {
"codeigniter4/codeigniter4": "dev-develop",
"tatter/tools": "^1.0"
},
"autoload": {
"psr-4": {
"Tatter\\Patches\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Support\\": "tests/_support"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/codeigniter4/CodeIgniter4"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"analyze": "phpstan analyze",
"style": "phpcs --standard=./vendor/codeigniter4/codeigniter4-standard/CodeIgniter4 tests/ src/",
"test": "phpunit"
}
}