forked from phalcon/rest-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.69 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
{
"name": "phalcon/rest-api",
"type": "library",
"description": "This is a sample API REST application for the Phalcon PHP Framework",
"keywords": [
"phalcon",
"framework",
"sample app",
"rest-api",
"rest",
"api"
],
"homepage": "https://phalcon.io",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/rest-api/graphs/contributors"
}
],
"require": {
"php": ">=7.2",
"ext-openssl": "*",
"ext-json": "*",
"ext-memcached": "*",
"ext-phalcon": "^4.0.0",
"dariuszp/cli-progress-bar": "^1.0",
"lcobucci/jwt": "^3.2",
"league/fractal": "^0.18.0",
"monolog/monolog": "^1.23",
"psr/log": "^1.0",
"robmorgan/phinx": "^0.11",
"vlucas/phpdotenv": "^2.4"
},
"require-dev": {
"codeception/codeception": "^3.1",
"phalcon/ide-stubs": "^4.0.0",
"phpstan/phpstan": "^0.11",
"squizlabs/php_codesniffer": "^3.4",
"symfony/browser-kit": "4.3",
"symfony/console": "4.3",
"symfony/css-selector": "4.3",
"symfony/debug": "4.3",
"symfony/dom-crawler": "4.3",
"symfony/event-dispatcher": "4.3",
"symfony/config": "4.3",
"symfony/filesystem": "4.3",
"symfony/finder": "4.3",
"symfony/process": "4.3",
"symfony/yaml": "4.3",
"vimeo/psalm": "^3.4"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"phpcs": "phpcs --standard=PSR2"
}
}