-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.91 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
{
"name": "osmphp/framework",
"description": "Osm Framework is an open-source, insanely fast, unprecedentedly extensible, and fun to work with PHP 8 framework for creating modern Web applications. It's built on top of tried and tested Symfony and Laravel components.",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Vladislav Osmianskij",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"osmphp/core": "^0.10",
"symfony/console": "^5",
"vlucas/phpdotenv": "^5",
"symfony/cache": "^5",
"illuminate/events": "^8",
"illuminate/filesystem": "^8",
"illuminate/database": "^8",
"doctrine/dbal": "^3",
"elasticsearch/elasticsearch": "^7",
"monolog/monolog": "^2",
"algolia/algoliasearch-client-php": "^3",
"symfony/http-foundation": "^5",
"symfony/browser-kit": "^5",
"illuminate/view": "^8",
"nikic/fast-route": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^9",
"symfony/dom-crawler": "^5",
"symfony/panther": "^0.9",
"symfony/css-selector": "^5"
},
"autoload": {
"files": [
"src/Blade/functions.php",
"src/Cache/functions.php",
"src/Http/functions.php",
"src/Js/functions.php",
"src/Logs/functions.php",
"src/Translations/functions.php",
"src/Themes/functions.php"
],
"psr-4": {
"Osm\\Framework\\": "src/",
"Osm\\App\\": "app/",
"Osm\\Tools\\": "tools/"
}
},
"autoload-dev": {
"psr-4": {
"Osm\\Framework\\Tests\\": "tests/",
"Osm\\Framework\\Samples\\": "samples/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/osmphp/core"
}
]
}