This repository has been archived by the owner on Aug 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (50 loc) · 1.54 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
{
"name": "wolnosciowiec/remote-resource-verifier",
"description": "Microservice that takes URL addresses into a queue and performs checks",
"keywords": ["url verifier", "resource verifier", "queue", "ping", "http check", "remote-resource-verifier"],
"homepage": "http://wolnosciowiec.net/opensource",
"license": "GPLv3",
"authors": [
{
"name": "Blackand Red",
"email": "[email protected]",
"homepage": "http://wolnosciowiec.net"
}
],
"require": {
"php": ">=7.0",
"ext-pdo_sqlite": "*",
"slim/slim": "~3",
"monolog/monolog": ">=1.0",
"guzzle/guzzle": "~3.9",
"robmorgan/phinx": "0.6.*",
"vlucas/spot2": "2.*",
"jms/serializer": "^1.4",
"slim/twig-view": "^2.1"
},
"require-dev": {
"phpunit/phpunit": ">=4.8 < 6.0"
},
"autoload-dev": {
"psr-4": {
"": "src/",
"Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"composer dump-autoload -o",
"rm ./data/cache/* -rf",
"./vendor/bin/phinx migrate -e default",
"./vendor/bin/phinx migrate -e dev"
],
"post-update-cmd": [
"composer dump-autoload -o",
"rm ./data/cache/* -rf",
"./vendor/bin/phinx migrate -e default",
"./vendor/bin/phinx migrate -e dev"
],
"start": "php -S 0.0.0.0:8080 -t public public/index.php",
"test": "phpunit"
}
}