-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
71 lines (71 loc) · 2.11 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
{
"name": "baka/baka",
"description": "Baka Packages",
"license": "MIT",
"keywords": ["Saas", "Canvas"],
"authors": [{
"name": "mctekk",
"email": "max@mctekk.com"
}],
"require": {
"php": ">=7.4",
"ext-phalcon": ">=4",
"egulias/email-validator": "^2.1.10",
"elasticsearch/elasticsearch": "^7.8",
"guzzlehttp/guzzle": "^6.5",
"illuminate/support": "^8.47",
"illuminate/validation": "^8.47",
"lcobucci/jwt": "^3.3",
"monolog/monolog": "^2.1",
"nesbot/carbon": "^2.3",
"phalcon/incubator": "^4.0.0-alpha.1",
"phalcon/incubator-acl": "^1.0.0-alpha.1",
"php-amqplib/php-amqplib": "^2.9",
"robmorgan/phinx": "^0.12",
"stripe/stripe-php": "^7.36",
"swiftmailer/swiftmailer": "^6",
"vlucas/phpdotenv": "^4.1"
},
"require-dev": {
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.2",
"codeception/module-filesystem": "^1.0",
"codeception/module-phalcon": "^1.0",
"codeception/module-phalcon4": "^1.0",
"codeception/verify": "*",
"fzaninotto/faker": "^1.9",
"odan/phinx-migrations-generator": "^5",
"phpunit/phpunit": "^9.1",
"squizlabs/php_codesniffer": "1.*",
"symfony/var-dumper": "^4.3@dev",
"phalcon/ide-stubs": "^4.1"
},
"autoload": {
"psr-4": {
"Baka\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Baka\\": "src/",
"Baka\\Test\\": "tests/",
"Baka\\Test\\Support\\": "tests/_support/"
}
},
"scripts": {
"test": "./vendor/bin/codecept run"
},
"suggest": {
"ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
"ext-swoole": "Required to use the Swoole coroutines (^4.5)."
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"discard-changes": true
}
}