forked from codeigniter4/tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.22 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.22 KB
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
{
"name": "codeigniter4-projects/tasks",
"type": "library",
"description": "Task Scheduler for CodeIgniter 4",
"keywords": [
"codeigniter",
"codeigniter4",
"task scheduling",
"cron"
],
"homepage": "https://github.com/codeigniter4-projects/codeigniter4-tasks",
"license": "MIT",
"authors": [
{
"name": "Lonnie Ezell",
"email": "lonnieje@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.2"
},
"require-dev": {
"codeigniter4/codeigniter4": "dev-develop",
"codeigniter4/codeigniter4-standard": "^1.0",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8.0 || ^9.0",
"fakerphp/faker": "^1.9",
"mockery/mockery": "^1.0",
"squizlabs/php_codesniffer": "^3.3"
},
"autoload": {
"psr-4": {
"CodeIgniter\\Tasks\\": "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": {
"post-update-cmd": [
"bash admin/setup.sh"
],
"analyze": "phpstan analyze",
"style": "phpcbf --standard=./vendor/codeigniter4/codeigniter4-standard/CodeIgniter4 tests/ src/",
"test": "phpunit"
}
}