forked from tattersoftware/codeigniter4-outbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.26 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
{
"name": "tatter/outbox",
"type": "library",
"description": "Email toolkit for CodeIgniter 4",
"keywords": [
"codeigniter",
"codeigniter4",
"outbox",
"email",
"inline",
"logging"
],
"homepage": "https://github.com/tattersoftware/codeigniter4-outbox",
"license": "MIT",
"authors": [
{
"name": "Matthew Gatner",
"email": "mgatner@tattersoftware.com",
"homepage": "https://tattersoftware.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"components/jquery": "^3.3",
"tatter/assets": "^2.2",
"tijsverkoyen/css-to-inline-styles": "^2.2",
"twbs/bootstrap": "^4.5"
},
"require-dev": {
"codeigniter4/codeigniter4": "dev-develop",
"myth/auth": "dev-develop",
"tatter/tools": "^1.3"
},
"autoload": {
"psr-4": {
"Tatter\\Outbox\\": "src"
},
"exclude-from-classmap": [
"**/Database/Migrations/**"
]
},
"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": "phpcbf --standard=./vendor/codeigniter4/codeigniter4-standard/CodeIgniter4 tests/ src/",
"test": "phpunit"
}
}