-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.88 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 1.88 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
60
61
62
63
64
65
66
{
"name": "mouf/mvc.splash-common",
"description": "Splash is a PHP router. It takes an HTTP request and dispatches it to the appropriate controller.",
"type": "mouf-library",
"authors": [
{
"name": "David Négrier",
"email": "d.negrier@thecodingmachine.com",
"homepage": "http://mouf-php.com"
}
],
"keywords": [
"mvc",
"framework",
"mouf",
"splash",
"splash-common"
],
"homepage": "http://mouf-php.com/packages/mouf/mvc.splash-common",
"license": [
"MIT"
],
"require": {
"php": ">=7.0",
"thecodingmachine/splash-router": "^10",
"mouf/mouf": "^2.0",
"mouf/html.htmlelement": "^2.0",
"mouf/utils.action.common-action": "~1.0",
"mouf/html.renderer.twig-extensions": "^1 || ^3",
"mouf/utils.common.conditioninterface": "~2.0",
"mouf/html.template.templateinterface": "^2.1 || ^3"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"satooshi/php-coveralls": "^1.0",
"mouf/picotainer": "~1.0",
"mnapoli/simplex": "^0.3",
"cache/array-adapter": "^1.2",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"Mouf\\Mvc\\Splash\\": "src/Mouf/Mvc/Splash"
}
},
"autoload-dev": {
"psr-4": {
"Mouf\\Mvc\\Splash\\": "tests/Mouf/Mvc/Splash"
}
},
"scripts": {
"phpstan": "phpstan analyse src/Mouf -c phpstan.neon --level=0 --no-progress -vvv"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"mouf": {
"logo": "doc/images/logo.png",
"section": {
"name": "MVC",
"description": "All the tools you need to route requests and display pages",
"weight": 10
}
}
}
}