-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·49 lines (49 loc) · 1.38 KB
/
composer.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.38 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
{
"name": "dwnload/edd-software-license-manager",
"description": "A PHP class abstraction for managing WordPress plugin licenses and auto-updates that are sold on an Easy Digital Downloads store.",
"license": "MIT",
"authors": [
{
"name": "Austin Passy",
"email": "thefrosty@users.noreply.github.com",
"homepage": "https://austin.passy.co",
"role": "Developer"
}
],
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"roots/wordpress-core-installer": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.3"
},
"preferred-install": "dist",
"sort-packages": true
},
"require": {
"php": "^8.3",
"composer/installers": "~2.0",
"dwnload/wp-settings-api": "^3.11",
"thefrosty/wp-utilities": "^3.7"
},
"require-dev": {
"ext-simplexml": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/php-code-coverage": "^9",
"phpunit/phpunit": "^9",
"roots/wordpress": "^6.7",
"squizlabs/php_codesniffer": "^3.2",
"symfony/var-dumper": "^6.4 || ^7.2",
"wp-phpunit/wp-phpunit": "^6.7",
"yoast/phpunit-polyfills": "^3.0 || ^4.0"
},
"autoload": {
"psr-4": {
"Dwnload\\EddSoftwareLicenseManager\\": "src"
}
}
}