-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 2.15 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
{
"name": "karelwintersky/arris",
"description": "Karel Wintersky's Application µFramework",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Karel Wintersky",
"email": "[email protected]"
}
],
"keywords": [ "app", "logging", "console", "hooks", "routing" ],
"config": {
"optimize-autoloader": true,
"platform-check": false
},
"require": {
"php": ">=7.4 | 8.*",
"ext-pdo": "*",
"ext-mbstring": "*",
"ext-json": "*",
"ext-readline": "*",
"ext-curl": "*",
"ext-simplexml": "*",
"psr/log": "^1.1"
},
"require-dev": {
"predis/predis": "^2.0",
"vlucas/phpdotenv": "^3.3",
"symfony/var-dumper": "^5.4",
"php-sage/sage": "^1.3",
"phpunit/phpunit": "^4.8 || ^5.7 || ^6.5",
"php-coveralls/php-coveralls": "^1.1"
},
"suggest": {
"karelwintersky/arris.entity": "Arris µFramework: Entity Types",
"karelwintersky/arris.router": "Arris µFramework: AppRouter class",
"karelwintersky/arris.logger": "Arris µFramework: AppLogger class",
"karelwintersky/arris.helpers": "Arris µFramework: helpers",
"karelwintersky/arris.template": "Arris Template engine",
"ajur-media/php-image-resize": "PHP class to re-size and scale images",
"php-curl-class/php-curl-class": "PHP Curl Class makes it easy to send HTTP requests and integrate with web APIs.",
"spatie/regex": "A sane interface for php's built in preg_* functions",
"adbario/php-dot-notation": "PHP dot notation access to arrays",
"sabre/event": "sabre/event is a library for lightweight event-based programming (more complexity than Arris/Hook)",
"php-sage/sage": "Sage - Insightful PHP debugging assistant, pretty replacement for var_dump() and debug_backtrace()."
},
"autoload": {
"files": [
"functions/functions.php",
"functions/helpers.php"
],
"psr-4": {
"Arris\\" : ["interfaces", "sources"],
"Arris\\Traits\\" : ["traits"]
}
}
}