-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.62 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.62 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
{
"name": "webbyphp/webby",
"type": "project",
"description": "WebbyPHP: A lego-like PHP Framework extended from the CodeIgniter 3 Framework for easy web application development",
"keywords": [
"framework",
"sylynder",
"webby",
"webbyphp",
"codeigniter",
"php"
],
"license": "MIT",
"authors": [
{
"name": "Kwame Oteng Appiah-Nti",
"email": "developerkwame@gmail.com"
}
],
"require": {
"php": "^8.3",
"webbyphp/engine": "^3.0"
},
"suggest": {
"pestphp/pest": "If you want to use the Pest testing framework, run `composer require pestphp/pest --dev` to install it.",
"symfony/var-dumper": "If you want to use the dd() and dump() for debugging, run `composer require symfony/var-dumper --dev` to install it."
},
"autoload-dev": {
"psr-4": {
"Tests\\Unit\\": "tests/Unit/",
"Tests\\Feature\\": "tests/Feature/",
"Tests\\Pest\\": "tests/Pest/",
"Webby\\Tests\\": "tests/Webby/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"post-create-project-cmd": [
"@php webby set --env",
"@php webby key:generate"
],
"test": "./vendor/bin/pest --colors=always",
"test:coverage": "./vendor/bin/pest --coverage --colors=always"
},
"minimum-stability": "stable",
"prefer-stable": true
}