-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.17 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
{
"name": "balazscsaba2006/socially",
"type": "library",
"description": "Library to validate and parse social media profile URLs",
"keywords": [
"php",
"social media",
"social media profile URL",
"linkedin",
"github",
"twitter",
"google plus",
"pinterest",
"facebook",
"angel",
"gravatar",
"klout",
"behance",
"bitbucket",
"dribbble",
"flickr",
"stackoverflow",
"reddit",
"quora"
],
"homepage": "https://github.com/balazscsaba2006/socially",
"license": "MIT",
"authors": [
{
"name": "Balazs Csaba",
"email": "[email protected]",
"homepage": "https://www.humandirect.eu"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-mbstring": "*",
"ext-json": "*",
"utopia-php/domains": "^0.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"autoload": {
"files": [
"src/static.php"
],
"psr-4": {
"HumanDirect\\Socially\\": "src/HumanDirect/Socially"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\HumanDirect\\Socially\\": "tests/HumanDirect/Socially"
}
}
}