-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
62 lines (62 loc) · 1.75 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
{
"name": "soatok/faq-off",
"description": "Challenge-Response Automation",
"type": "project",
"keywords": ["faq", "Slim Framework", "microservice"],
"homepage": "http://github.com/soatok/faq-off",
"license": "ISC",
"authors": [
{
"name": "Soatok",
"email": "[email protected]",
"homepage": "https://soatok.com"
}
],
"require": {
"php": "^7.3",
"ext-json": "*",
"ext-pdo": "*",
"ezyang/htmlpurifier": "^4",
"kelunik/two-factor": "^1",
"league/commonmark": "^0|^1",
"monolog/monolog": "^1.17",
"paragonie/anti-csrf": "^2",
"paragonie/constant_time_encoding": "^2",
"paragonie/hidden-string": "^1",
"sebastian/diff": "^1|^3",
"soatok/anthrokit": "^0.7|^1",
"soatok/anthrokit-auth": ">=0.8|^1",
"soatok/anthrokit-session": "^0|^1",
"slim/slim": "^3.1",
"twig/twig": "^2",
"ulrichsg/getopt-php": "^3"
},
"require-dev": {
"phpunit/phpunit": "^8",
"vimeo/psalm": "^3"
},
"autoload": {
"psr-4": {
"Soatok\\FaqOff\\": "src/FaqOff/"
}
},
"autoload-dev": {
"psr-4": {
"Soatok\\FaqOff\\Tests\\": "tests/unit/"
}
},
"config": {
"process-timeout" : 0
},
"scripts": {
"post-update-cmd": [
"php bin/upgrade.php auto",
"chmod 0777 public/local",
"chmod -R ugo+w public/local",
"chmod 0777 vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer"
],
"start": "php -S localhost:8080 -t public",
"static-analysis": "psalm",
"test": "phpunit"
}
}