-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 2.33 KB
/
composer.json
File metadata and controls
84 lines (84 loc) · 2.33 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
81
82
83
84
{
"name": "modufolio/appkit",
"description": "",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Maarten Thiebou"
}
],
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-dom": "*",
"ext-exif": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-intl": "*",
"ext-libxml": "*",
"ext-pdo": "*",
"ext-simplexml": "*",
"ext-sqlite3": "*",
"ext-zip": "*",
"claviska/simpleimage": "^4.0",
"doctrine/dbal": "^4",
"doctrine/migrations": "^3.6",
"doctrine/orm": "^3",
"firebase/php-jwt": "^7.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "3.0",
"symfony/cache": "^7.1",
"symfony/config": "^7.2",
"symfony/console": "^7.1",
"symfony/filesystem": "^7.2",
"symfony/http-foundation": "^7.2",
"symfony/password-hasher": "^7.2",
"symfony/property-access": "^7.1",
"symfony/property-info": "^7.1",
"symfony/routing": "^7.2",
"symfony/serializer": "^7.1",
"symfony/uid": "^7.2",
"symfony/validator": "^7.1",
"symfony/yaml": "^v7.1",
"nikic/php-parser": "^5.6",
"willdurand/negotiation": "^3.1",
"spomky-labs/otphp": "^11.3",
"endroid/qr-code": "6.0.9",
"symfony/var-exporter": "^7.1",
"modufolio/http": "dev-main"
},
"require-dev": {
"phpunit/phpunit": "^10.5 || ^11",
"fakerphp/faker": "^1.24",
"doctrine/data-fixtures": "^2.2",
"modufolio/json-api": "dev-master"
},
"autoload": {
"psr-4": {
"Modufolio\\Appkit\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Modufolio\\Appkit\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --no-coverage",
"test:coverage": "php -d xdebug.mode=coverage ./vendor/bin/phpunit --stderr --coverage-html=tests/coverage"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"audit": {
"block-insecure": false
}
}
}