-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 928 Bytes
/
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
{
"name": "infuse/libs",
"description": "Solid libraries for rapid PHP development",
"type": "library",
"keywords": ["infuse","libs"],
"homepage": "http://infuse.jaredtking.com",
"license": "MIT",
"authors": [
{
"name": "jaredtking",
"email": "[email protected]",
"homepage": "http://jaredtking.com"
}
],
"support": {
"issues": "https://github.com/infusephp/libs/issues",
"source": "https://github.com/infusephp/libs"
},
"autoload": {
"psr-4": {"Infuse\\": "src/"},
"files": ["src/functions.php"]
},
"require": {
"php": ">=7.1.0",
"pimple/pimple": "~3.0",
"symfony/event-dispatcher": "^4.3",
"nikic/fast-route": "1.0.*"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"phpunit/php-code-coverage": "5.*",
"php-coveralls/php-coveralls": "^2.1",
"smarty/smarty": ">=v3.1.19",
"mockery/mockery": "~1.0",
"mustache/mustache": "2.7.0",
"twig/twig": "~2.7"
}
}