-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
77 lines (77 loc) · 2.17 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "sonypradana/php-library",
"description": "library to build php mvc",
"keywords": ["framework", "php-mvc", "php-library"],
"license": "MIT",
"authors": [
{
"name": "Angger Pradana",
"email": "sonypradana@gmail.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-mbstring": "*",
"php-di/php-di": "^6.4 || ^7.0",
"sonypradana/validator": "^0.8"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"mockery/mockery": "^1.6",
"friendsofphp/php-cs-fixer": "^3.49",
"phpstan/phpstan": "^1.10",
"rector/rector": "^1.0"
},
"autoload": {
"psr-4": {
"System\\": "src/System/",
"System\\Support\\": "src/System/Macroable"
},
"files": [
"src/System/Collection/helper.php",
"src/System/Integrate/helper.php",
"src/System/Console/helper.php",
"src/System/Text/helper.php",
"src/System/Time/helper.php"
]
},
"autoload-dev": {
"files": [
"tests/DataBase/BaseConnection.php",
"tests/DataBase/QueryStringTest.php",
"tests/DataBase/RealDatabaseConnectionTest.php"
]
},
"extra": {
"laravel": {
"dont-discover": [
"*"
]
},
"branch-alias": {
"dev-master": "0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"refacto": "rector",
"lint": "php-cs-fixer fix -v",
"test:refacto": "rector --dry-run",
"test:lint": "php-cs-fixer fix -v --dry-run --diff",
"test:types": "phpstan analyse --ansi --memory-limit=-1 --debug",
"test:unit": "phpunit --testdox --exclude-group database",
"test:dev": [
"@test:refacto",
"@test:lint",
"@test:types",
"@test:unit"
],
"test": [
"rector --dry-run",
"php-cs-fixer fix -v --dry-run",
"phpstan analyse --ansi --memory-limit=-1",
"phpunit --exclude-group database"
]
}
}