-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.42 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
{
"name": "kanvas/inventory",
"description": "Kanvas App Inventory Subsystem",
"keywords": [
"kanvas",
"inventory",
"products"
],
"license": "MIT",
"authors": [
{
"name": "kaioken",
"email": "max@mctekk.com"
}
],
"type": "project",
"require": {
"php": ">= 7.4",
"ext-phalcon": ">=4",
"canvas/core": "^0.3"
},
"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\\Inventory\\": "src/",
"Kanvas\\Inventory\\Tests\\Support\\":"tests/_support"
}
}
}