-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·72 lines (72 loc) · 2.06 KB
/
composer.json
File metadata and controls
executable file
·72 lines (72 loc) · 2.06 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
68
69
70
71
72
{
"name": "upstatement/routes",
"description": "Manage rewrites and routes in WordPress with this dead-simple plugin",
"keywords": [
"routes",
"routing",
"rewrite",
"redirects"
],
"homepage": "https://www.upstatement.com",
"license": "MIT",
"authors": [
{
"name": "Jared Novack",
"email": "jared@upstatement.com",
"homepage": "https://www.upstatement.com"
}
],
"support": {
"issues": "https://github.com/Upstatement/routes/issues",
"wiki": "https://github.com/Upstatement/routes/wiki",
"source": "https://github.com/Upstatement/routes"
},
"require": {
"php": ">=8.2",
"altorouter/altorouter": "^2.0.2",
"composer/installers": "^2"
},
"require-dev": {
"phpunit/phpunit": "^11.5 || ^12",
"wp-cli/wp-cli": "*",
"rector/rector": "^2.0",
"mantle-framework/cache": "^1.16",
"mantle-framework/config": "^1.16",
"mantle-framework/container": "^1.16",
"mantle-framework/contracts": "^1.16",
"mantle-framework/database": "^1.16",
"mantle-framework/events": "^1.16",
"mantle-framework/faker": "^1.15",
"mantle-framework/filesystem": "^1.16",
"mantle-framework/framework-views": "^1.16",
"mantle-framework/http": "^1.16",
"mantle-framework/http-client": "^1.16",
"mantle-framework/support": "^1.16",
"mantle-framework/testing": "^1.16",
"mantle-framework/testkit": "^1.16",
"mantle-framework/view": "^1.16",
"php-parallel-lint/php-parallel-lint": "^1.3",
"squizlabs/php_codesniffer": "^3.0",
"symplify/easy-coding-standard": "^13"
},
"scripts": {
"cs": "ecs check",
"cs:fix": "ecs check --fix",
"test": "phpunit",
"lint": "parallel-lint --exclude .git --exclude vendor .",
"rector": "rector process --dry-run",
"rector:fix": "rector process"
},
"autoload": {
"psr-0": {
"Routes": ""
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"alleyinteractive/composer-wordpress-autoloader": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}