-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.33 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
{
"name": "tina4components/tina4jobsmodule",
"description": "This is a package that will allows you to add a redis jobs queue to any tin4 project",
"type": "composer-plugin",
"license": "MIT",
"require": {
"tina4stack/tina4php": "^2.0",
"composer-plugin-api": "^2.0",
"tina4stack/tina4php-sqlite3": "^2.0",
"ext-redis": "*",
"ext-sqlite3": "*"
},
"scripts": {
"tina4": "tina4",
"tina4jobs": "tina4jobs",
"test": "@tina4 tests:run",
"test:verbose": "@tina4 tests:verbose",
"initialize": "@tina4 initialize:run",
"start": "@tina4 webservice:run",
"start-jobs": "@tina4jobs"
},
"classmap": [
"src/*",
"src/app/*",
"src/orm/*",
"src/routes/*",
"Tina4Job/*"
],
"bin": [
"bin/tina4jobs"
],
"autoload": {
"files": [
"loadModule.php"
],
"psr-4": {
"Tina4Jobs\\": "Tina4Job/",
"\\": [
"src/",
"src/app/",
"src/orm/",
"src/routes",
"Tina4Job/",
"Tina4Job/Tina4Queue/"
]
}
},
"extra": {
"class": "Tina4Jobs\\InstallerPlugin"
},
"config": {
"process-timeout": 0
}
}