-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 2.21 KB
/
composer.json
File metadata and controls
76 lines (76 loc) · 2.21 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
{
"name": "hideyukimori/nene",
"description": "A tiny renovated legacy-style PHP framework for reviewable small services",
"type": "project",
"license": "MIT",
"homepage": "https://nene-php.com/",
"keywords": [
"php",
"framework",
"php-framework",
"openapi",
"smarty",
"docker",
"legacy-modernization",
"micro-framework"
],
"authors": [
{
"name": "Hideyuki MORI",
"email": "info@ayane.co.jp"
}
],
"support": {
"issues": "https://github.com/hideyukiMORI/NeNe/issues",
"source": "https://github.com/hideyukiMORI/NeNe"
},
"autoload": {
"psr-4": {
"Nene\\Init\\" : "class/init/",
"Nene\\Controller\\": "class/controller/",
"Nene\\Model\\" : "class/model/",
"Nene\\Database\\" : "class/db/",
"Nene\\Func\\" : "class/func/",
"Nene\\Xion\\" : "class/xion/"
}
},
"require": {
"php": ">=8.4",
"monolog/monolog": "^3.10",
"smarty/smarty" : "^5.8",
"symfony/mailer": "^6.4",
"predis/predis": "^2.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.95",
"phan/phan": "^6.0",
"phpunit/phpunit": "^10.5",
"symfony/yaml": "^6.4"
},
"scripts": {
"setup": "@php cli/setupDatabase.php --env=.env --yes",
"schema:generate": "@php cli/generateSchemaSql.php",
"schema:check": "@php cli/generateSchemaSql.php --check",
"schema:diff": "@php cli/schemaDiff.php",
"test": "phpunit --testsuite unit",
"test:http": [
"@php tools/test-http-preflight.php",
"phpunit --testsuite http"
],
"test:all": "phpunit",
"analyze": "phan --allow-polyfill-parser --load-baseline .phan/baseline.php",
"format": "php-cs-fixer fix --config=.php-cs-fixer.dist.php",
"format:check": "php-cs-fixer fix --config=.php-cs-fixer.dist.php --dry-run --diff",
"check": [
"@test",
"@test:http",
"@analyze"
],
"ci": [
"@test",
"@test:http",
"@analyze",
"@format:check"
]
}
}