-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
97 lines (97 loc) · 3.02 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "sonypradana/php-library",
"description": "library to build php mvc",
"keywords": [
"framework",
"php-mvc",
"php-library"
],
"license": "MIT",
"authors": [
{
"name": "Angger Pradana",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-mbstring": "*",
"php-di/php-di": "^7.0",
"sonypradana/validator": "^0.8"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"mockery/mockery": "^1.6",
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/phpstan": "^1.12",
"rector/rector": "^1.2"
},
"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",
"tests/Integrate/Commands/CommandTest.php"
]
},
"replace": {
"sonypradana/cache": "self.version",
"sonypradana/collection": "self.version",
"sonypradana/console": "self.version",
"sonypradana/container": "self.version",
"sonypradana/cron": "self.version",
"sonypradana/database": "self.version",
"sonypradana/file": "self.version",
"sonypradana/http": "self.version",
"sonypradana/router": "self.version",
"sonypradana/security": "self.version",
"sonypradana/support": "self.version",
"sonypradana/template": "self.version",
"sonypradana/text": "self.version",
"sonypradana/time": "self.version",
"sonypradana/view": "self.version"
},
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
},
"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,not-for-mysql5.7",
"test:release": "php ./bin/split-repo.php validate",
"test:dev": [
"@test:refacto",
"@test:lint",
"@test:types",
"@test:unit",
"@test:release"
],
"test": [
"rector --dry-run",
"php-cs-fixer fix -v --dry-run",
"phpstan analyse --ansi --memory-limit=-1",
"phpunit --exclude-group database,not-for-mysql5.7",
"php ./bin/split-repo.php validate"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}