-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 712 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 712 Bytes
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
{
"name": "sebkay/oop-wp",
"authors": [
{
"name": "Seb Kay",
"email": "seb@sebkay.com",
"homepage": "https://sebkay.com"
}
],
"autoload": {
"psr-4": {
"OOPWP\\": "src/"
}
},
"license": "MIT",
"require": {
"php": "^7.4|^8.0",
"nesbot/carbon": "^2.57"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"spatie/ray": "^1.28",
"php-stubs/wordpress-tests-stubs": "^5.8",
"php-stubs/wordpress-stubs": "^5.9",
"php-stubs/wordpress-globals": "^0.2"
},
"scripts": {
"lint": "./vendor/bin/phpcs --standard=PSR12 ./src"
}
}