-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.79 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
{
"name": "lora/core",
"description": "A simple and efficiency PHP framework for building web application.",
"type": "library",
"keywords": [
"framework",
"php",
"lora",
"core",
"mvc"
],
"readme": "https://github.com/mdabbas-cse/php-mvc-framework/blob/main/README.md",
"time": "",
"support": {
"issues": "https://github.com/mdabbas-cse/php-mvc-framework/issues",
"source": "https://github.com/mdabbas-cse/php-mvc-framework",
"wiki": "https://github.com/mdabbas-cse/php-mvc-framework/wiki"
},
"require": {
"php": "^7.4.2|^8.0",
"friendsofphp/php-cs-fixer": "^3.13"
},
"license": "MIT",
"authors": [
{
"name": "mdabbas-cse",
"email": "[email protected]",
"role": "Developer"
}
],
"minimum-stability": "alpha",
"autoload": {
"psr-4": {
"LaraCore\\": "./",
"LaraCore\\Framework\\": "./framework/",
"LaraCore\\App\\": "./app/",
"LaraCore\\Config\\": "./config/",
"LaraCore\\Database\\": "./database/",
"LaraCore\\Resources\\": "./resources/"
}
},
"autoload-dev": {
"psr-4": {
"LaraCore\\Tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit --testdox --colors=always tests/ --exclude-group db",
"unused-variables": "phpcs -p --standard=VariableAnalysis includes",
"variable-fix": "vendor/bin/psalter --alter --issues=UnusedVariable",
"version": "phpcs -p --standard=PHPCompatibilityWP --runtime-set testVersion 5.6-8.1 includes",
"fix-all": "php-cs-fixer fix includes",
"fix": "php-cs-fixer fix",
"pcf-commands": "php-cs-fixer",
"code-status": "php-cs-fixer fix --dry-run --show-progress=dots --ansi --diff -vv ./",
"post-install-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}