-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.53 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.53 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
{
"name": "vainyl/core",
"type": "shared-package",
"authors": [
{
"name": "Taras Girnyk",
"email": "taras.p.gyrnik@gmail.com"
}
],
"autoload": {
"psr-4": {
"Vainyl\\Core\\": "src/"
}
},
"require": {
"php": ">=7.1",
"ext-ds": "*",
"psr/container": "~1.0",
"psr/log": "~1.0",
"symfony/dependency-injection": "^3",
"symfony/config": "^3",
"symfony/yaml": "^3",
"php-ds/php-ds": "^1"
},
"suggest" : {
"vainyl/data" : "Data providers and descriptors",
"vainyl/di" : "Symfony container adapter for parsing config/di.yml, extensions and compiler passes",
"vainyl/cache" : "PSR-16 simple cache interfaces",
"vainyl/config" : "Config file readers with caching options",
"vainyl/connection" : "[Lazy] external connection handling",
"vainyl/database" : "Simple database layer abstraction",
"vainyl/event" : "[Lazy] event dispatcher implementation with async support",
"vainyl/http" : "PSR-11 HTTP message implementation",
"vainyl/operation" : "Operation/Collection implementation",
"vainyl/phalcon-bridge" : "Integration with applications based on Phalcon3 framework",
"vainyl/symfony-bridge" : "Integration with applications based on Symfony3 framework",
"vainyl/time" : "Immutable DateTime extensions with handful methods and locale support"
},
"prefer-stable": true,
"minimum-stability": "dev"
}