-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.75 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.75 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
59
60
61
62
63
64
65
66
67
{
"name": "phpnomad/wordpress-integration",
"description": "",
"version": "4.1.0",
"type": "library",
"homepage": "https://github.com/phpnomad/core",
"readme": "README.md",
"license": "MIT",
"prefer-stable": true,
"minimum-stability": "dev",
"scripts": {
"php-cs-fixer": "php-cs-fixer fix"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/woocommerce/action-scheduler"
}
],
"autoload": {
"psr-4": {
"PHPNomad\\Integrations\\WordPress\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"PHPNomad\\Integrations\\WordPress\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Alex Standiford",
"email": "alex@standiford.us"
}
],
"require-dev": {
"phpnomad/tests": "^0.3.0"
},
"require": {
"phpnomad/auth": "^1.0",
"phpnomad/asset": "^1.0",
"phpnomad/db": "^2.0",
"phpnomad/datastore": "^2.0",
"phpnomad/event": "^1.0",
"phpnomad/email": "^1.0",
"phpnomad/tasks": "^2.1",
"phpnomad/cache": "^1.0",
"phpnomad/chrono": "^1.0",
"phpnomad/rest": "^2.0",
"phpnomad/http": "^1.1",
"phpnomad/console": "^1.0",
"phpnomad/fetch": "^1.0",
"phpnomad/utils": "^1.0",
"phpnomad/translate": "^2.0",
"phpnomad/loader": "^1.0 || ^2.0",
"phpnomad/framework": "^2.0 || ^3.0",
"phpnomad/privacy": "^1.0",
"ext-json": "*",
"woocommerce/action-scheduler": "^3.9",
"phpnomad/template": "^1.0"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}