-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·77 lines (77 loc) · 2.23 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
70
71
72
73
74
75
76
77
{
"name": "zaphyr-org/framework",
"description": "A PHP framework based on ZAPHYR repositories.",
"keywords": [
"framework",
"zaphyr"
],
"license": "MIT",
"homepage": "https://zaphyr.org",
"authors": [
{
"name": "merloxx",
"email": "[email protected]",
"homepage": "https://merloxx.it",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"filp/whoops": "^2.15",
"symfony/console": "^6.3",
"vlucas/phpdotenv": "^5.5",
"voku/anti-xss": "^4.1",
"zaphyr-org/config": "^2.3",
"zaphyr-org/container": "^1.1",
"zaphyr-org/cookie": "^1.0",
"zaphyr-org/encrypt": "^2.0",
"zaphyr-org/event-dispatcher": "^1.0",
"zaphyr-org/http-emitter": "^1.0",
"zaphyr-org/http-message": "^1.0",
"zaphyr-org/logger": "^2.1",
"zaphyr-org/router": "^1.3",
"zaphyr-org/session": "^1.0",
"zaphyr-org/utils": "^2.2"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.0",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^4.0"
},
"provide": {
"psr/container-implementation": "^2.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message-implementation": "^2.0",
"psr/http-server-handler-implementation": "^1.0",
"psr/http-server-middleware-implementation": "^1.0",
"psr/logger-implementation": "^3.0"
},
"autoload": {
"psr-4": {
"Zaphyr\\Framework\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Zaphyr\\FrameworkTests\\": "tests/"
}
},
"scripts": {
"cs": "vendor/bin/phpcs --standard=PSR12 -n src",
"cbf": "vendor/bin/phpcbf --standard=PSR12 -n src",
"phpunit": "vendor/bin/phpunit --colors=always",
"phpstan": "vendor/bin/phpstan analyse --memory-limit 512M",
"test": [
"@phpunit",
"@phpstan",
"@cs"
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}