-
-
Notifications
You must be signed in to change notification settings - Fork 602
Expand file tree
/
Copy pathcomposer.json
More file actions
131 lines (131 loc) 路 3.66 KB
/
Copy pathcomposer.json
File metadata and controls
131 lines (131 loc) 路 3.66 KB
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
131
{
"name": "ph7software/ph7builder",
"description": "pH7Builder. Social Dating Web 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": "hi@ph7.me",
"homepage": "https://ph7.me",
"role": "Senior Software Developer"
}
],
"config": {
"platform": {
"php": "8.2.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.2",
"ext-curl": "*",
"ext-dom": "*",
"ext-exif": "*",
"ext-gd": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo_mysql": "*",
"ext-xml": "*",
"ext-zip": "*",
"ext-zlib": "*",
"arcturial/clickatell": "^3.0",
"aws/aws-sdk-php": "^3.200",
"bacon/bacon-qr-code": "^3.0",
"braintree/braintree_php": "^6.0",
"ezyang/htmlpurifier": "^4.19",
"fakerphp/faker": "^1.24",
"geoip2/geoip2": "^3.3",
"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",
"robthree/twofactorauth": "^3.0",
"stripe/stripe-php": "^20.0",
"symfony/console": "^7.4",
"symfony/mailer": "^7.4",
"twbs/bootstrap": "^3.4",
"twilio/sdk": "^8.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"friendsofphp/php-cs-fixer": "^3.95",
"phake/phake": "^4.1",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.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 --testsuite \"pH7Builder Protected CI\" --no-coverage",
"test-ci": "_protected/vendor/bin/phpunit --testsuite \"pH7Builder Protected CI\" --coverage-text --coverage-clover=build/coverage.xml",
"test-integration": "_protected/vendor/bin/phpunit --testsuite \"pH7Builder Integration\" --no-coverage",
"analyse": "_protected/vendor/bin/phpstan analyse --configuration=phpstan.neon.dist --memory-limit=1G",
"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"
}
}