-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.1 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.1 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
{
"name": "circli/auth-module",
"type": "circli-module",
"license": "MIT",
"authors": [
{
"name": "Andreas Sundqvist",
"email": "andreas@oak-valley.se"
}
],
"repositories":
[
{
"url": "https://github.com/sunkan/PHP-Cookie.git",
"type": "git"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"atlas/orm": "^3.0",
"psr/container": "^1.0",
"php-di/php-di": "^6.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/http-factory": "^1.0",
"aura/payload": "~3.0",
"polus/adr": "~4.0",
"ramsey/uuid": "^3.8",
"paragonie/cookie": "dev-psr7",
"sunkan/enum": "^1.0",
"psr7-sessions/storageless": "^5.0",
"circli/contracts": "^1.0",
"circli/event-dispatcher": "^2.0",
"circli/middlewares": "^1.0",
"webmozart/assert": "^1.4"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"atlas/cli": "^2.1",
"circli/web-core": "^1.0",
"circli/core": "^1.0"
},
"autoload": {
"psr-4": {
"Circli\\Modules\\Auth\\": "src/"
}
}
}