-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.28 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.28 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
{
"name": "dev-pledge/auth",
"description": "Dev Pledge Auth Service",
"keywords": [
"auth"
],
"homepage": "https://github.com/Dev-Pledge/Auth",
"license": "MIT",
"authors": [
{
"name": "Tom Wright",
"email": "contact@tomwright.me"
},
{
"name": "John Saunders",
"email": "john@yettimedia.co.uk"
}
],
"require": {
"php": ">=7.2.0",
"slim/slim": "^3.1",
"slim/php-view": "^2.0",
"monolog/monolog": "^1.17",
"tomwright/extended-pdo": "^1.0",
"tomwright/json": "^1.0",
"vlucas/phpdotenv": "^2.4",
"sentry/sentry": "^1.8",
"dev-pledge/uuid": "^1.0",
"nesbot/carbon": "^1.23",
"spomky-labs/base64url": "^1.0"
},
"require-dev": {
"phpunit/phpunit": ">=4.8 < 6.0",
"eaglewu/swoole-ide-helper": "dev-master",
"dev-pledge/slim-integrations": "@dev"
},
"repositories": [
{
"type": "path",
"url": "./localpackages/DevPledgeIntegrations"
}
],
"autoload-dev": {
"psr-4": {
"\\Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"DevPledge\\": "src/"
}
},
"config": {
"process-timeout": 0
},
"scripts": {
"start-docker": "docker-compose up",
"start-php": "php -S localhost:8080 -t public index.php",
"test": "phpunit"
}
}