-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.63 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
{
"authors": [
{
"name": "Robert Landers",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Bottledcode\\SwytchFramework\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bottledcode\\SwytchFramework\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"olvlvl/composer-attribute-collector": true,
"pestphp/pest-plugin": true,
"infection/extension-installer": true
}
},
"description": "A PHP framework for building web applications",
"license": "MIT",
"name": "bottledcode/swytch-framework",
"require": {
"ext-dom": "*",
"ext-intl": "*",
"ext-mbstring": "*",
"ext-sodium": "*",
"gettext/gettext": "^5.6",
"gettext/translator": "^1.1",
"laminas/laminas-escaper": "^2.12",
"masterminds/html5": "^2.7",
"olvlvl/composer-attribute-collector": "^2.0",
"php": ">=8.2",
"php-di/php-di": "^7.0",
"psr/container": "2.0.2",
"psr/http-message": "^1.1 || ^2.0",
"symfony/property-access": "^7.0",
"symfony/serializer": "^7.0",
"nyholm/psr7-server": "^1.0",
"nyholm/psr7": "^1.5",
"laminas/laminas-httphandlerrunner": "^2.5",
"withinboredom/response-code": "^1.0"
},
"require-dev": {
"infection/infection": "^0.27",
"monolog/monolog": "^3.3",
"pestphp/pest": "^2.5",
"phpstan/phpstan": "^1.10",
"roave/security-advisories": "dev-latest",
"spatie/pest-plugin-snapshots": "^2.0"
},
"suggest": {
"monolog/monolog": "For logging",
"php-di/php-di": "For dependency injection",
"symfony/serializer": "For state validation"
},
"type": "library"
}