-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
97 lines (89 loc) · 2.88 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "platine-php/framework",
"description": "Platine Framework is a lightweight, high-performance, simple and elegant PHP Web framework",
"type": "library",
"license": "MIT",
"keywords": ["application", "website", "development", "framework", "php", "platine"],
"authors": [
{
"name": "NGUEREZA Tony",
"email": "[email protected]",
"homepage": "https://www.platine-php.com",
"role": "developer"
}
],
"support": {
"issues": "https://github.com/platine-php/framework/issues",
"source": "https://github.com/platine-php/framework"
},
"require": {
"php": "^7.4 || ^8",
"platine-php/cache": "^1.0",
"platine-php/collection": "^1.0",
"platine-php/config": "^1.0",
"platine-php/console": "^1.0",
"platine-php/container": "^1.0",
"platine-php/cookie": "^1.0",
"platine-php/database": "^1.0",
"platine-php/docx-template": "^1.0",
"platine-php/etl": "^1.0",
"platine-php/event-dispatcher": "^1.0",
"platine-php/expression": "^1.0",
"platine-php/filesystem": "^1.0",
"platine-php/http": "^1.0",
"platine-php/lang": "^1.0",
"platine-php/logger": "^1.0",
"platine-php/mail": "^1.0",
"platine-php/oauth2": "^1.0",
"platine-php/orm": "^1.0",
"platine-php/pagination": "^1.0",
"platine-php/pdf": "^1.0",
"platine-php/request-handler": "^1.0",
"platine-php/router": "^1.0",
"platine-php/security": "^1.0",
"platine-php/session": "^1.0",
"platine-php/stdlib": "^1.0",
"platine-php/template": "^1.0",
"platine-php/upload": "^1.0",
"platine-php/user-agent": "^1.0",
"platine-php/validator": "^1.0",
"platine-php/webauthn": "^1.0"
},
"require-dev": {
"mikey179/vfsstream": "~1.6",
"phpmd/phpmd": "@stable",
"phpunit/phpunit": "^9.5",
"platine-php/dev": "^1.0",
"squizlabs/php_codesniffer": "3.*",
"phpstan/phpstan": "^1.8"
},
"autoload": {
"psr-4":{
"Platine\\Framework\\": "src/"
},
"files": [
"src/Helper/functions.php"
]
},
"autoload-dev": {
"psr-4":{
"Platine\\Test\\Framework\\": "tests"
},
"files": [
"tests/fixtures/mocks.php",
"tests/fixtures/fixtures.php"
]
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit --colors=always",
"static": "phpstan analyze",
"check": "phpcs",
"check-fix": "phpcbf",
"analyze": "phpmd src xml phpmd.xml"
},
"minimum-stability": "stable",
"prefer-stable": true
}