-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (53 loc) · 1.53 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
{
"name": "platine-php/app",
"description": "Platine PHP is a lightweight, high-performance, simple and elegant PHP Web framework",
"type": "project",
"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/app/issues",
"source": "https://github.com/platine-php/app"
},
"require": {
"php": "^7.4 || ^8",
"platine-php/framework": "^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\\App\\": "app/"
}
},
"autoload-dev": {
"psr-4":{
"Platine\\Test\\App\\": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit --colors=always",
"static": "phpstan analyze",
"check": "phpcs",
"check-fix": "phpcbf",
"analyze": "phpmd app xml phpmd.xml"
},
"minimum-stability": "stable",
"prefer-stable": true
}