-
Notifications
You must be signed in to change notification settings - Fork 472
/
composer.json
executable file
·76 lines (76 loc) · 2.07 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
{
"name": "easydigitaldownloads/easy-digital-downloads",
"type": "wordpress-plugin",
"description": "The easiest way to sell digital products with WordPress.",
"keywords": ["edd", "eddwp", "easy digital downloads"],
"homepage": "https://easydigitaldownloads.com/",
"license": "GPL-2.0+",
"support": {
"issues": "https://easydigitaldownloads.com/support"
},
"config": {
"platform-check": false
},
"require": {
"nesbot/carbon": "^2.69.0",
"stripe/stripe-php": "15.10.0"
},
"require-dev": {
"phpunit/phpunit": "^8",
"stevegrunwell/phpunit-markup-assertions": "^1.2",
"yoast/phpunit-polyfills": "^1.0.5",
"yoast/wp-test-utils": "^1.0",
"codedungeon/phpunit-result-printer": "dev-master",
"coenjacobs/mozart": "^0.7.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"EDD\\": "src/",
"EDD\\Vendor\\Stripe\\": "libraries/Stripe/lib/",
"EDD\\Vendor\\Carbon\\": "libraries/Carbon/src/Carbon/",
"EDD\\Vendor\\Symfony\\Polyfill\\Mbstring\\": "libraries/Symfony/Polyfill/Mbstring/"
},
"files": [
"src/Globals/Polyfills/PHP.php",
"libraries/Symfony/Polyfill/Mbstring/bootstrap.php"
]
},
"autoload-dev": {
"classmap": ["src/", "tests/"],
"exclude-from-classmap": ["/tests/helpers/stubs"]
},
"scripts": {
"mozart": "vendor/bin/mozart compose && composer dump-autoload --no-dev"
},
"extra": {
"mozart": {
"dep_namespace": "EDD\\Vendor\\",
"dep_directory": "/libraries/",
"classmap_directory": "/libraries/classes/",
"classmap_prefix": "EDD_",
"packages": [
"stripe/stripe-php",
"nesbot/carbon"
],
"excluded_packages": [
"symfony/deprecation-contracts",
"symfony/polyfill-php80"
],
"delete_vendor_directories": true,
"override_autoload": {
"stripe/stripe-php": {
"psr-4": {
"Stripe\\": ""
}
},
"nesbot/carbon": {
"psr-4": {
"Carbon\\": ""
}
}
}
}
}
}