-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 2.6 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "matapatos/fastendpoints-depends",
"type": "wordpress-muplugin",
"description": "Speed up your REST endpoints by using plugins as dependencies",
"keywords": [
"wordpress",
"fast",
"rest-api",
"dependencies",
"plugins"
],
"license": "MIT",
"require": {
"php": "^8.1",
"composer/installers": "^2.2",
"matapatos/wp-fastendpoints-contracts": "^1.1"
},
"autoload": {
"psr-4": {
"Wp\\FastEndpoints\\Depends\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wp\\FastEndpoints\\Depends\\Tests\\": "tests/"
},
"files": [
"tests/constants.php"
]
},
"require-dev": {
"mockery/mockery": "^1.6",
"dingo-d/wp-pest": "^1.6",
"brain/monkey": "2.*",
"laravel/pint": "*",
"pestphp/pest-plugin-parallel": "^1.2",
"matapatos/wp-fastendpoints": "^2.1"
},
"scripts": {
"lint": "./vendor/bin/pint --config pint.json",
"setup:wp:6.0": "rm -rf wp/ && ./vendor/bin/wp-pest setup plugin --plugin-slug fastendpoints --wp-version 6.0.8 --skip-delete --no-interaction",
"setup:wp:6.1": "rm -rf wp/ && ./vendor/bin/wp-pest setup plugin --plugin-slug fastendpoints --wp-version 6.1.6 --skip-delete --no-interaction",
"setup:wp:6.2": "rm -rf wp/ && ./vendor/bin/wp-pest setup plugin --plugin-slug fastendpoints --wp-version 6.2.5 --skip-delete --no-interaction",
"setup:wp:6.3": "rm -rf wp/ && ./vendor/bin/wp-pest setup plugin --plugin-slug fastendpoints --wp-version 6.3.4 --skip-delete --no-interaction",
"setup:wp:6.4": "rm -rf wp/ && ./vendor/bin/wp-pest setup plugin --plugin-slug fastendpoints --wp-version 6.4.4 --skip-delete --no-interaction",
"setup:wp:latest": "rm -rf wp/ && ./vendor/bin/wp-pest setup plugin --plugin-slug fastendpoints --skip-delete --no-interaction",
"test:lint": "./vendor/bin/pint --test",
"test:coverage": "./vendor/bin/pest --coverage --parallel",
"test:unit": "./vendor/bin/pest --colors=always --exclude-group=integration --parallel",
"test:integration": "./vendor/bin/pest --colors=always --group=integration",
"test": [
"@test:lint",
"@test:unit",
"@test:integration"
]
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"pestphp/pest-plugin": true
}
},
"extra": {
"mozart": {
"dep_namespace": "Wp\\FastEndpoints\\Depends\\Dependencies\\",
"dep_directory": "/src/Dependencies/",
"classmap_directory": "/src/Classes/",
"classmap_prefix": "FED_",
"packages": [
"composer/installers"
],
"delete_vendor_directories": true
}
}
}