-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.14 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.14 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
{
"name": "jewei/tinyphp",
"description": "A lightweight PHP framework focused on simplicity, clarity, and adherence to PSR standards.",
"type": "project",
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-pdo": "*",
"psr/container": "^2.0"
},
"require-dev": {
"laravel/pint": "^1.13",
"pestphp/pest": "^2.24",
"phpstan/phpstan": "^1.10",
"rector/rector": "^0.18.6",
"symfony/var-dumper": "^6.3"
},
"license": "MIT",
"autoload": {
"psr-4": {
"TinyPHP\\": "src/"
},
"files": ["helpers.php"]
},
"authors": [
{
"name": "Jewei Mak",
"email": "jewei.mak@gmail.com"
}
],
"scripts": {
"lint": "pint --ansi",
"phpstan": "phpstan analyse --ansi --memory-limit=-1",
"refactor": "rector",
"test": "pest"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}