forked from pH7Software/pH7-Social-Dating-CMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
130 lines (130 loc) · 3.43 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
127
128
129
130
{
"name": "ph7software/ph7builder",
"description": "pH7Builder is a PHP 8 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://ph7builder.com",
"license": "MIT",
"authors": [
{
"name": "Pierre-Henry Soria",
"email": "[email protected]",
"homepage": "https://ph7.me",
"role": "Senior Software Developer"
}
],
"config": {
"platform": {
"php": "8.0"
},
"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,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "^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": "^4.8",
"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": "^2.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": "^6.44"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"friendsofphp/php-cs-fixer": "^2.2",
"phake/phake": "^4.1",
"phpstan/phpstan": "^1.5",
"phpunit/phpunit": "^9.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",
"@composer update --working-dir _install"
]
},
"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://ph7builder.com/doc"
}
}