-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
90 lines (90 loc) · 2.95 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "eonx-com/externals",
"description": "External libraries shared between EonX applications",
"keywords": [
"external"
],
"license": "BSD-3-Clause",
"type": "library",
"require": {
"php": ">=7.2",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"eonx-com/utils": "^1.0",
"league/flysystem": "^1.0",
"psr/event-dispatcher": "^1.0",
"psr/http-client": "^1.0",
"zendframework/zend-diactoros": "^2.1"
},
"require-dev": {
"eonx-com/standards": "^0.2",
"eonx-com/search": "^2.1",
"gedmo/doctrine-extensions": "^2.4",
"giggsey/libphonenumber-for-php": "^8.10",
"guzzlehttp/guzzle": "^6.0.0",
"illuminate/auth": "^6.0",
"illuminate/http": "^6.0",
"illuminate/validation": "^6.0",
"indigophp/doctrine-annotation-autoload": "^0.1.0",
"laravel-doctrine/extensions": "^1.0",
"laravel-doctrine/orm": "1.5.*",
"league/flysystem-aws-s3-v3": "^1.0",
"league/flysystem-memory": "^1.0",
"mikey179/vfsstream": "^1.6",
"monolog/monolog": "^1.23",
"nicoswd/php-gpg": "^1.7",
"paragonie/hidden-string": "^1.0",
"phpmd/phpmd": "^2.6",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-phpunit": "^0.11.0",
"phpstan/phpstan-strict-rules": "^0.11.0",
"phpunit/phpunit": "^8.0",
"roave/security-advisories": "dev-master",
"sebastian/phpcpd": "^4.0",
"squizlabs/php_codesniffer": "3.*",
"symfony/property-access": "^4.3",
"symfony/validator": "^4.3",
"vlucas/phpdotenv": "^3.0"
},
"replace": {
"eoneopay/externals": "^1.1"
},
"autoload": {
"psr-4": {
"EoneoPay\\Externals\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\EoneoPay\\Externals\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"suggest": {
"eonx-com/search": "Required to use the Elasticsearch health check",
"gedmo/doctrine-extensions": "Required to use ORM extensions",
"giggsey/libphonenumber-for-php": "For phone number validation",
"guzzlehttp/guzzle": "Required to use the http client class",
"illuminate/http": "Required to use the laravel request bridge",
"illuminate/validation": "Required to use the validate subscriber and laravel validate bridge",
"laravel-doctrine/extensions": "Required to use ORM extensions",
"laravel-doctrine/orm": "Required to use the ORM class",
"league/flysystem": "Required to use the Filesystem class",
"league/flysystem-aws-s3-v3": "Required to use the cloud Filesystem class",
"monolog/monolog": "Required to use the logger class",
"paragonie/hidden-string": "Required to use hidden string functionality",
"nicoswd/php-gpg": "Required to use the encryption class",
"symfony/validator": "Required to use the symfony validator",
"vlucas/phpdotenv": "Required to use the env helper"
},
"minimum-stability": "stable",
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}