-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.65 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.65 KB
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
{
"name": "soosyze/framework",
"description": "A simple framework for creating web applications",
"type": "framework",
"keywords": ["php", "framework", "php-framework", "mvc", "composer", "psr-4", "psr-7", "psr-11"],
"homepage": "https://soosyze.com",
"license": "MIT",
"authors": [
{
"name": "Mathieu NOËL",
"email": "mathieu@soosyze.com",
"homepage": "https://mathieu-noel.fr",
"role": "Lead developer"
}
],
"support": {
"email": "mathieu@soosyze.com"
},
"require": {
"ext-date": "*",
"ext-fileinfo": "*",
"ext-filter": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-session": "*",
"php": ">=7.2",
"psr/container": "^2.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^8.5",
"soosyze/php-cs-fixer-config": "^1.0",
"rector/rector": "^0.15"
},
"suggest": {
"phpdocumentor/phpdocumentor": "Pour générer une documentation en ligne de commande.",
"phpmetrics/phpmetrics": "Pour générer un rapport de l'état du code au format HTML."
},
"autoload": {
"psr-4": {
"Soosyze\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Soosyze\\Tests\\": "tests"
}
},
"config": {
"bin-dir": "bin",
"optimize-autoloader": true,
"classmap-authoritative": true
}
}