-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
87 lines (87 loc) · 2.46 KB
/
composer.json
File metadata and controls
87 lines (87 loc) · 2.46 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "metapraxis/wp-file-system",
"version": "0.0.1",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"description": "A safe and convenient object-oriented wrapper for the WordPress Filesystem API",
"keywords": [
"wordpress",
"filesystem",
"wp-filesystem",
"files",
"uploads"
],
"homepage": "https://github.com/method-hub/wp-file-system",
"support": {
"issues": "https://github.com/method-hub/wp-file-system/issues",
"source": "https://github.com/method-hub/wp-file-system"
},
"autoload": {
"psr-4": {
"Metapraxis\\WPFileSystem\\": "src/",
"Metapraxis\\WPFileSystem\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.4"
}
},
"archive": {
"exclude": [
"/tests",
"/.github",
"/.husky",
"/bin",
"/playwright-report",
"/node_modules",
"/test-results",
"/.phpcs.xml.dist",
"/.phpunit.result.cache",
"/.wp-env.json",
"/commitlint.config.js",
"/phpstan.neon.dist",
"/phpunit.xml.dist",
"/playwright.config.js",
"/.gitignore",
"/package.json",
"/package-lock.json",
"/CODE_OF_CONDUCT.md",
"/CONTRIBUTING.md"
]
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"ext-dom": "*",
"ext-libxml": "*",
"ext-simplexml": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.13.2",
"phpstan/phpstan": "^2.1.17",
"szepeviktor/phpstan-wordpress": "^2.0",
"yoast/phpunit-polyfills": "^4.0",
"phpunit/phpunit": "^9.6.23",
"php-stubs/wordpress-stubs": "^6.8",
"phpstan/phpstan-phpunit": "^2.0",
"php-mock/php-mock-phpunit": "^2.13",
"ext-posix": "*",
"ext-zend-opcache": "*"
},
"scripts": {
"lint": "vendor/bin/phpcs src",
"lint-fix": "vendor/bin/phpcbf src",
"analyse": "vendor/bin/phpstan analyse",
"tests": "npm run tests",
"tests:unit": "phpunit tests/Unit",
"tests:integration": "phpunit tests/Integration",
"test:e2e": "npm run test:e2e"
},
"authors": [
{
"name": "Method",
"homepage": "https://github.com/method-hub"
}
]
}