-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (63 loc) · 1.82 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
{
"name": "kanvas/guild",
"description": "Kanvas Guild is a Customer relationship management package.",
"keywords": [
"kanvas",
"guild"
],
"license": "MIT",
"authors": [
{
"name": "kaioken",
"email": "max@mctekk.com"
},
{
"name": "arfenis",
"email": "arfen00@gmail.com"
}
],
"type": "project",
"require": {
"php": ">= 7.4",
"ext-phalcon": ">=4",
"kanvas/content": "^0.1",
"baka/baka": "0.7.x-dev"
},
"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/module-rest": "^1.2",
"codeception/verify": "*",
"phalcon/incubator": "4.0.x-dev",
"phalcon/incubator-acl": "^1.0.0-alpha.1",
"phalcon/incubator-test": "^1.0.0-alpha.1",
"robmorgan/phinx": "^0.12",
"fzaninotto/faker": "^1.9",
"vlucas/phpdotenv": "^4.1",
"odan/phinx-migrations-generator": "^5",
"mark-gerarts/auto-mapper-plus": "2.0.0-alpha1",
"squizlabs/php_codesniffer": "3.2",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^9.1",
"phalcon/ide-stubs": "^4.0"
},
"autoload": {
"psr-4": {
"Kanvas\\Guild\\": "src/",
"Kanvas\\Guild\\Tests\\Support\\":"tests/_support"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}