-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.19 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
{
"name": "talentify/phalcon-psr-adapters",
"description": "Provides adapters in order to use PSR interfaces with Phalcon.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/Talentify/phalcon-psr-adapters",
"keywords": [
"phalcon",
"PSR",
"adapter"
],
"require": {
"php": "^8.1",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"laminas/laminas-diactoros": "^3",
"phalcon/ide-stubs": "^5.1",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"PhalconAdapters\\": "src/PhalconAdapters"
}
},
"autoload-dev": {
"psr-4": {
"PhalconAdapters\\": "tests/PhalconAdapters"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"minimum-stability": "dev",
"scripts": {
"phpstan": "vendor/bin/phpstan analyse",
"phpunit": "phpunit -v",
"test": [
"@phpunit"
]
},
"scripts-descriptions": {
"test": "Run tests"
}
}