-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.29 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
{
"name": "kapxapot/plasticode",
"description": "PHP framework based on Slim framework",
"keywords": [ "PHP", "Plasticode", "Bootstrap", "Slim", "Twig", "API" ],
"homepage": "https://github.com/kapxapot/plasticode",
"license": "MIT",
"authors": [
{
"name": "Sergey Atroshchenko (kapxapot)",
"email": "[email protected]",
"homepage": "https://about.me/kapxapot"
}
],
"require": {
"php": "^7.4",
"slim/slim": "^3.8",
"monolog/monolog": "^1.22",
"respect/validation": "^1.1",
"j4mie/idiorm": "^1.5",
"symfony/yaml": "^3.3",
"slim/twig-view": "2.5.0",
"jublonet/codebird-php": "^3.1",
"vlucas/phpdotenv": "^2.4",
"webmozart/assert": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "^9",
"php-coveralls/php-coveralls": "^2.2",
"phpspec/prophecy": "^1.10.3",
"phpspec/prophecy-phpunit": "^2.0"
},
"autoload": {
"psr-4": {
"Plasticode\\": "src"
},
"files": [
"functions/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Plasticode\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit --colors=always"
}
}