-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (45 loc) · 1.01 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
{
"name": "neoan.io/core",
"description": "Neoan.io Lenkrad Framework",
"type": "package",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Stefan Roehrl",
"email": "neoan@neoan.us"
}
],
"require": {
"php": "~8.2",
"neoan3-apps/template": "^2",
"neoan3-apps/db": "^0.3",
"vlucas/phpdotenv": "^5.4",
"symfony/console": "^6.1",
"ext-pdo": "*",
"neoan.io/legacy-db-adapter": "^1.0",
"ext-openssl": "*",
"composer/composer": "^2",
"ramsey/uuid": "^4.6",
"monolog/monolog": "^3.7.0"
},
"autoload": {
"psr-4": {
"Neoan\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/",
"Playground\\": "_playground/"
}
},
"require-dev": {
"phpunit/phpunit": "9.5",
"ext-simplexml": "*"
},
"scripts": {
"test": ["phpunit --configuration phpunit.xml --teamcity","php -f tests/get-coverage.php -- 80 verbose"],
"current-coverage": "php -f tests/get-coverage.php -- 80"
}
}