-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 2.08 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
{
"name": "biurad/framework",
"description": "PHP Flange Framework is a high performance framework with expressive, elegant syntax, and maintainable",
"keywords": ["biurad","psr-standard","psr-7","psr-14","psr-11","psr-15","psr-17","php", "flange","php framework"],
"type": "project",
"homepage": "https://www.biurad.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Divine Niiquaye Ibok",
"email": "divineibok@gmail.com"
},
{
"name": "Biurad Lap Community",
"homepage": "https://biurad.com/contributors"
}
],
"support": {
"docs": "https://docs.biurad.com/php-framework",
"issues": "https://github.com/biurad/php-framework/issues",
"rss": "https://github.com/biurad/php-framework/releases.atom",
"source": "https://github.com/biurad/php-framework"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"process-timeout": 900,
"sort-packages": true
},
"require": {
"php": "^8.0",
"biurad/flange": "2.*",
"nikic/php-parser": "^4.13",
"tracy/tracy": "^2.9"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6",
"symfony/var-dumper": "^6.0"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"suggest": {
"symfony/cache": "Adds a cache layer to the application",
"symfony/dotenv": "Allows to load environment variables from a .env file",
"symfony/event-dispatcher": "Allows to register symfony's supported listeners and trigger events"
},
"scripts": {
"post-create-project-cmd": [
"@php -r \"file_exists('.env') || copy('env.example', '.env');\""
],
"serve": "@php flange serve",
"test": "\"./vendor/bin/phpunit\""
},
"minimum-stability": "dev",
"prefer-stable": true
}