-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
33 lines (33 loc) · 854 Bytes
/
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
{
"name": "drmonkeyninja/cakephp-social-share",
"description": "CakePHP helper for creating social share/bookmark links",
"type": "cakephp-plugin",
"keywords": ["cakephp", "helper"],
"homepage": "https://github.com/drmonkeyninja/cakephp-social-share",
"license": "MIT",
"authors": [
{
"name": "Andy Carter",
"role": "Author"
},
{
"name": "Mark Scherer",
"role": "Contributor"
}
],
"require": {
"cakephp/cakephp": "~4.0",
"drmonkeyninja/social-share-url": "^1.0"
},
"autoload": {
"psr-4": {
"SocialShare\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests",
"SocialShare\\Test\\": "tests"
}
}
}