-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·80 lines (80 loc) · 1.64 KB
/
composer.json
File metadata and controls
executable file
·80 lines (80 loc) · 1.64 KB
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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "viames/pair",
"description": "lightweight PHP framework as the air",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"ext-curl": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"php": "^8.3||^8.4||^8.5",
"psr/log": "^1.1|^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^12.0"
},
"license": "MIT",
"keywords": [
"pair",
"php",
"multilingual",
"framework",
"active-record",
"plugin-system",
"rest-api"
],
"scripts": {
"test": "phpunit -c phpunit.xml.dist",
"upgrade-to-v2": "php scripts/upgrade-to-v2.php",
"upgrade-to-v3": "php scripts/upgrade-to-v3.php",
"upgrade-to-v4": "php scripts/upgrade-to-v4.php",
"benchmark-v4": "php scripts/benchmark-v4.php"
},
"autoload": {
"psr-4": {
"Pair\\": "src/",
"Pair\\Core\\": "src/Core",
"Pair\\Html\\": "src/Html",
"Pair\\Models\\": "src/Models",
"Pair\\Orm\\": "src/Orm",
"Pair\\Api\\": "src/Api",
"Pair\\Api\\OpenApi\\": "src/Api/OpenApi",
"Pair\\Services\\": "src/Services",
"Pair\\Helpers\\": "src/Helpers"
}
},
"autoload-dev": {
"psr-4": {
"Pair\\Tests\\": "tests/"
}
},
"support": {
"issues": "https://github.com/viames/pair/issues",
"wiki": "https://github.com/viames/pair/wiki",
"source": "https://github.com/viames/pair/tree/main/src"
},
"homepage": "https://viames.github.io/pair/",
"authors": [
{
"name": "Viames Marino",
"homepage": "https://viames.it"
}
],
"extra": {
"branch-alias": {
"dev-main": "4.x-dev"
}
},
"config": {
"platform": {
"php": "8.3"
}
},
"suggest": {
"ext-redis": "*",
"ext-xdebug": "*"
}
}