-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
69 lines (69 loc) · 2.04 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
{
"name": "headio/phalcon-service-layer",
"description": "A service layer implementation for Phalcon projects",
"type": "library",
"keywords": [
"Phalcon",
"Service layer",
"Business logic",
"Repository-Service Pattern"
],
"license": "MIT",
"authors": [
{
"name": "Dominic Beck",
"email": "dominic.beck360@gmail.com"
}
],
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.0"
}
},
"require": {
"php": ">=8.0.0 <8.0.99",
"ext-mbstring": "*",
"ext-phalcon": ">=5.1.4"
},
"require-dev": {
"codeception/codeception": "^4.1.0",
"codeception/module-asserts": "^1.1",
"codeception/module-phalcon5": "^1.0.0",
"codeception/specify": "^1.4",
"codeception/verify": "^1.5",
"friendsofphp/php-cs-fixer": "*",
"headio/phalcon-bootstrap": "5.x",
"mockery/mockery": "^1.3",
"monolog/monolog": "^2.1.0",
"phalcon/ide-stubs": "^5.1.4",
"vimeo/psalm": "^4.14",
"vlucas/phpdotenv": "^5.1"
},
"scripts": {
"lint": "php-cs-fixer fix --diff --dry-run",
"fix": "php-cs-fixer fix",
"test": "vendor/bin/codecept clean; vendor/bin/codecept build; vendor/bin/codecept run -f",
"psalm": "vendor/bin/psalm src --no-cache"
},
"autoload": {
"psr-4": {
"Headio\\Phalcon\\ServiceLayer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Integration\\": "tests/integration/",
"Unit\\": "tests/unit/",
"Stub\\": "tests/_data/_stub/",
"Module\\": "tests/_support/Module/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"suggest": {
"ext-memcached": "Required when the cache manager is configured to use libmemcached.",
"ext-redis": "Required when the cache manager is configured to use the redis cache."
}
}