forked from smrealms/smr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 835 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
34
35
36
37
{
"name": "smr/smr",
"description": "SMR",
"license": "AGPL-3.0",
"require": {
"abraham/twitteroauth": "^1.0",
"ext-curl": "*",
"ext-json": "*",
"ext-mysqli": "*",
"facebook/graph-sdk": "^5.5.0",
"google/recaptcha": "^1.1",
"php": "^7.4",
"phpmailer/phpmailer": "^6.1",
"vanilla/nbbc": "^2.0",
"vlucas/phpdotenv": "^v5.2.0"
},
"scripts": {
"start:integration-services": [
"docker-compose --env-file test.env up -d mysql-integration-test",
"sleep 20",
"docker-compose --env-file test.env run --rm flyway-integration-test"
],
"stop" : [
"docker-compose stop",
"docker-compose rm --force"
],
"test": "docker-compose --env-file test.env run --rm smr-integration-test"
},
"autoload-dev": {
"psr-0": {
"SmrTest\\": "test/"
}
},
"require-dev": {
"phpunit/phpunit": "9.4.3"
}
}