forked from pinoox/pinoox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
81 lines (81 loc) · 2.27 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
78
79
80
81
{
"name": "pinoox/pinoox",
"description": "pinoox is a simple environment for web management and development. You can do whatever you want on the web and add your desire features to your website in a simple way",
"keywords": [
"PHP",
"PHP Framework",
"pinoox"
],
"type": "project",
"homepage": "http://www.pinoox.com/",
"license": "MIT",
"authors": [
{
"name": "Pinoox",
"email": "dev@pinoox.com"
}
],
"require": {
"php": "^8.1",
"ext-mysqli": "*",
"doctrine/dbal": "^3.5",
"firebase/php-jwt": "^6.10",
"illuminate/database": "^10.40",
"illuminate/events": "^10.42",
"illuminate/hashing": "^10.42",
"illuminate/pagination": "^10.48",
"illuminate/support": "^10.48",
"illuminate/validation": "^10.40",
"intervention/image": "^3.8",
"nelexa/zip": "^4.0",
"nette/php-generator": "^4.1",
"symfony/asset": "^6.2",
"symfony/console": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/dotenv": "^6.3",
"symfony/error-handler": "^6.0",
"symfony/filesystem": "^6.3",
"symfony/finder": "^6.0",
"symfony/http-client": "^6.0",
"symfony/http-foundation": "^6.0",
"symfony/http-kernel": "^6.0",
"symfony/process": "^5.0",
"symfony/property-access": "^6.0",
"symfony/routing": "^6.0",
"symfony/serializer": "^6.0",
"symfony/templating": "^6.0",
"symfony/var-dumper": "^6.3",
"twig/twig": "^3",
"ext-zip": "*"
},
"autoload": {
"psr-4": {
"Pinoox\\": "pincore/",
"App\\": "apps/"
},
"files": [
"pincore/functions/base.php"
]
},
"autoload-dev": {
"psr-4": {
"Pinoox\\Test\\": "tests/"
}
},
"bin": [
"pinoox"
],
"require-dev": {
"nikic/php-parser": "^4.15",
"pestphp/pest": "^1.23"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}