-
-
Notifications
You must be signed in to change notification settings - Fork 585
/
Copy pathcomposer.json
126 lines (126 loc) · 3.27 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "ph7software/ph7cms",
"description": "pH7Builder is a Professional Social/Dating App/Site Builder",
"keywords": [
"business builder",
"community builder",
"CMS",
"dating",
"social",
"social network",
"social networking",
"community",
"community management",
"dating website",
"dating app",
"user",
"member",
"member area",
"payment",
"business",
"startup",
"membership",
"osdate",
"dating script",
"tinder"
],
"type": "project",
"homepage": "https://ph7cms.com",
"license": "MIT",
"authors": [
{
"name": "Pierre-Henry Soria",
"email": "hi@ph7.me",
"homepage": "https://ph7.me",
"role": "Senior Software Developer"
}
],
"config": {
"platform": {
"php": "7.4"
},
"vendor-dir": "_protected/vendor",
"bin-dir": "_protected/vendor/bin",
"cache-dir": "_protected/vendor/cache",
"autoloader-suffix": "PH7",
"preferred-install": "dist",
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": "^7.4 || ^8.0",
"ext-curl": "*",
"ext-dom": "*",
"ext-exif": "*",
"ext-gd": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo_mysql": "*",
"ext-xml": "*",
"ext-zip": "*",
"ext-zlib": "*",
"arcansecurity/skeerel-php": "^2.5",
"arcturial/clickatell": "^3.0",
"aws/aws-sdk-php": "^3.200",
"braintree/braintree_php": "^3.27",
"facebook/graph-sdk": "^5.6",
"fakerphp/faker": "^1.9",
"geoip2/geoip2": "~2.0",
"guzzlehttp/guzzle": "^7.4",
"ph-7/cute-link-names": "^2.0",
"ph-7/datatype": "^1.0",
"ph-7/html-to-text": "^1.0",
"ph-7/just-http-status-codes": "^1.1",
"ph-7/passcode-password-generator": "^2.0",
"ph-7/ph2gravatar": "^2.0",
"ph-7/qrcode-generator-php-class": "^2.1",
"robthree/twofactorauth": "^1.6",
"stripe/stripe-php": "^5.9",
"symfony/console": "^5.4",
"symfony/mailer": "^5.4",
"twbs/bootstrap": "^3.4",
"twilio/sdk": "^5.28"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^2.2",
"phake/phake": "^4.1",
"phpstan/phpstan": "^1.5"
},
"suggest": {
"symfony/thanks": "Thank your favorite PHP projects on GitHub (in the form of GitHub stars) using CLI"
},
"autoload": {
"psr-4": {
"PH7\\Cli\\": "_tools/cli"
}
},
"autoload-dev": {
"psr-4": {
"PH7\\Test\\": "_tests"
}
},
"scripts": {
"test": "_protected/vendor/bin/phpunit",
"test-ci": "_protected/vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml",
"analyse": "_protected/vendor/bin/phpstan analyse",
"post-cmd": [
"cp -R _protected/vendor/twbs/bootstrap/dist/css/bootstrap.min.css static/css/bootstrap.css",
"cp -R _protected/vendor/twbs/bootstrap/dist/js/bootstrap.min.js static/js/bootstrap.js"
],
"post-install-cmd": [
"@post-cmd",
"@composer install --working-dir _install"
],
"post-update-cmd": [
"@post-cmd"
]
},
"minimum-stability": "stable",
"support": {
"source": "https://github.com/pH7Software/pH7-Social-Dating-CMS",
"issues": "https://github.com/pH7Software/pH7-Social-Dating-CMS/issues",
"docs": "https://ph7cms.com/doc"
}
}