-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 1.62 KB
/
Copy pathcomposer.json
File metadata and controls
73 lines (73 loc) · 1.62 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
{
"name": "themeum/framework",
"type": "library",
"description": "Elegant PHP framework for WordPress plugins",
"license": "GPL-2.0-or-later",
"version": "3.0.3",
"keywords": [
"wordpress",
"framework",
"themeum"
],
"authors": [
{
"name": "Themeum",
"email": "support@themeum.com"
}
],
"homepage": "https://github.com/themeum/framework",
"require": {
"php": ">=7.4"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"php-stubs/wordpress-stubs": "^6.0",
"php-stubs/wp-cli-stubs": "^2.12",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.7",
"yoast/phpunit-polyfills": "^2.0",
"symfony/var-dumper": "^5.4"
},
"autoload": {
"psr-4": {
"Framework\\": "src/"
},
"files": [
"src/helpers.php",
"src/Polyfill/Polyfill.php"
]
},
"autoload-dev": {
"psr-4": {
"Framework\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.4"
}
},
"minimum-stability": "stable",
"archive": {
"exclude": [
".vscode",
"scripts",
"stubs",
"phpstan.neon.dist",
"README.md",
".gitignore",
".gitattributes"
]
},
"scripts": {
"post-install-cmd": "@link-ide-stubs",
"post-update-cmd": "@link-ide-stubs",
"link-ide-stubs": "php scripts/link-ide-stubs.php",
"test": "vendor/bin/phpunit --prepend tests/prepend.php --testdox",
"test:unit": "vendor/bin/phpunit --prepend tests/prepend.php --testsuite Unit --testdox",
"phpcs": "@php -d auto_prepend_file= scripts/run-phpcs.php",
"phpcbf": "@php -d auto_prepend_file= scripts/run-phpcs.php phpcbf",
"phpcs:fix": "@php -d auto_prepend_file= scripts/phpcs-fix.php",
"release": "php scripts/release.php"
}
}