-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
148 lines (148 loc) · 5.37 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "alleyinteractive/mantle-framework",
"description": "A framework for powerful WordPress development",
"license": "GPL-2.0-or-later",
"type": "library",
"authors": [
{
"name": "Alley",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"alleyinteractive/composer-wordpress-autoloader": "^1.0",
"alleyinteractive/wp-asset-manager": "^1.3.4",
"alleyinteractive/wp-caper": "^2.0.1",
"alleyinteractive/wp-concurrent-remote-requests": "^1.0.2",
"alleyinteractive/wp-filter-side-effects": "^2.0",
"doctrine/inflector": "^2.0.8",
"dragonmantank/cron-expression": "^3.3.3",
"fakerphp/faker": "^1.23",
"filp/whoops": "^2.15.3",
"illuminate/view": "^9.52.15",
"laravel/serializable-closure": "^1.3.1",
"league/commonmark": "^2.4.0",
"league/flysystem": "^1.1.10",
"league/flysystem-cached-adapter": "^1.1",
"monolog/monolog": "^2.9.1",
"nesbot/carbon": "^2.68.1",
"nette/php-generator": "^3.6",
"nunomaduro/collision": "^6.0 || ^7.0",
"nunomaduro/termwind": "^1.15.1",
"psr/container": "^1.1.1 || ^2.0.2",
"psr/log": "^1.0.1 || ^2.0 || ^3.0",
"psr/simple-cache": "^3.0",
"ramsey/uuid": "^4.7.4",
"spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1",
"symfony/console": "^6.0.19",
"symfony/finder": "^6.0.19",
"symfony/http-foundation": "^6.0.20",
"symfony/http-kernel": "^6.0.20",
"symfony/mime": "^6.0.19",
"symfony/routing": "^6.0.19",
"symfony/string": "^6.0.19",
"symfony/var-dumper": "^6.0.19",
"vlucas/phpdotenv": "^5.5",
"voku/portable-ascii": "^2.0.1"
},
"require-dev": {
"alleyinteractive/alley-coding-standards": "^1.0.1",
"alleyinteractive/wp-match-blocks": "^1.0 || ^2.0 || ^3.0",
"guzzlehttp/guzzle": "^7.7",
"league/flysystem-aws-s3-v3": "^1.0",
"mockery/mockery": "^1.6.6",
"php-stubs/wp-cli-stubs": "^2.8",
"phpstan/phpdoc-parser": "^1.23.1",
"phpstan/phpstan": "1.10.41",
"phpunit/phpunit": "^9.3.3 || ^10.0.7",
"predis/predis": "^2.2.0",
"squizlabs/php_codesniffer": "^3.7",
"symplify/monorepo-builder": "^10.3.3",
"szepeviktor/phpstan-wordpress": "^1.3"
},
"replace": {
"mantle-framework/assets": "self.version",
"mantle-framework/auth": "self.version",
"mantle-framework/cache": "self.version",
"mantle-framework/config": "self.version",
"mantle-framework/console": "self.version",
"mantle-framework/container": "self.version",
"mantle-framework/contracts": "self.version",
"mantle-framework/database": "self.version",
"mantle-framework/events": "self.version",
"mantle-framework/facade": "self.version",
"mantle-framework/faker": "self.version",
"mantle-framework/filesystem": "self.version",
"mantle-framework/http": "self.version",
"mantle-framework/http-client": "self.version",
"mantle-framework/log": "self.version",
"mantle-framework/query-monitor": "self.version",
"mantle-framework/queue": "self.version",
"mantle-framework/rest-api": "self.version",
"mantle-framework/scheduling": "self.version",
"mantle-framework/support": "self.version",
"mantle-framework/testing": "self.version",
"mantle-framework/testkit": "self.version",
"mantle-framework/view": "self.version"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"files": [
"src/mantle/framework/helpers.php",
"src/mantle/application/autoload.php",
"src/mantle/assets/autoload.php",
"src/mantle/cache/autoload.php",
"src/mantle/config/autoload.php",
"src/mantle/http/autoload.php",
"src/mantle/http-client/autoload.php",
"src/mantle/queue/autoload.php",
"src/mantle/support/autoload.php",
"src/mantle/testing/autoload.php"
]
},
"autoload-dev": {
"psr-4": {
"Mantle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"alleyinteractive/composer-wordpress-autoloader": true
},
"sort-packages": true
},
"extra": {
"wordpress-autoloader": {
"autoload": {
"Mantle\\": "src/mantle/"
},
"autoload-dev": {
"Mantle\\Tests\\": "tests/"
}
}
},
"scripts": {
"lint": [
"@phpcs",
"@phpstan"
],
"lint:fix": "@phpcbf",
"merge": "monorepo-builder merge",
"phpcbf": "phpcbf --standard=./phpcs.xml .",
"phpcs": "phpcs --standard=./phpcs.xml .",
"phpcs-modified": "./bin/phpcs-modified-files.sh",
"phpstan": "phpstan --memory-limit=1536M",
"phpunit": "phpunit",
"phpunit:multisite": "WP_MULTISITE=1 phpunit",
"release": "monorepo-builder release --ansi",
"release:patch": "monorepo-builder release patch --ansi",
"test": [
"@phpcs",
"@phpstan",
"@phpunit"
]
}
}