-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 1.94 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "oceanwebturk/framework",
"description": "The OceanWebTurk Framework",
"keywords": ["oceanwebturk","framework","mvc","library"],
"license": "MIT",
"type": "library",
"homepage": "https://oceanwebturk.com",
"archive":{
"name": "oceanwebturk-framework"
},
"support":{
"email": "demo@example.com",
"source": "https://github.com/oceanwebturk/framework",
"issues": "https://github.com/oceanwebturk/framework/issues"
},
"authors": [
{
"name": "Mehmet Ali Durusoy",
"email": "mehmetali@oceanwebturk.com",
"homepage": "https://oceanwebturk.com",
"role": "Developer"
}
],
"config":{
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"classmap-authoritative": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"pestphp/pest-plugin": true
}
},
"require":{
"php": ">=7.4",
"ext-pdo": "*",
"ext-json": "*",
"ext-session": "*",
"ext-openssl": "*",
"oceanwebturk/framework-translations": "*"
},
"require-dev": {
"pestphp/pest": "*",
"phpstan/phpstan": "1.11.x-dev"
},
"autoload":{
"psr-4":{
"OceanWebTurk\\Framework\\": "./src/"
},
"files": ["./helpers.php","./src/Support/helpers.php","./src/Http/helpers.php"]
},
"autoload-dev":{
"psr-4":{
"OceanWebTurk\\Framework\\Tests\\": "./tests/"
}
},
"bin": ["./whale"],
"replace":{
"oceanwebturk/http": ">=1.0",
"oceanwebturk/support": ">=1.0",
"oceanwebturk/database": ">=1.0"
},
"suggest":{
"oceanwebturk/superweb": "Single package for web technologies such as Open Graph, PWA",
"oceanwebturk/devtools": "Developer Tools for your OceanWebTurk Framework Projects"
},
"extra": {
"commands": [
{
"path": "[PACKAGE_DIR]src/Commands/",
"namespace": "OceanWebTurk\\Framework\\Commands\\"
}
]
},
"minimum-stability": "dev",
"prefer-stable": true
}