-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (62 loc) · 1.48 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
{
"name": "rslanzi/minimal",
"description": "Minimal is a PHP Packages Framework",
"license": "MIT",
"keywords": [
"RSlanzi",
"Minimal",
"Framework"
],
"authors": [
{
"name": "Riccardo Slanzi",
"email": "rslanzi@gmail.com",
"homepage": "https://riccardoslanzi.com"
}
],
"require": {
"symfony/http-foundation": "^5.2",
"symfony/routing": "^5.2",
"symfony/http-kernel": "^5.2",
"symfony/event-dispatcher": "^5.2",
"symfony/dependency-injection": "^5.2",
"vlucas/phpdotenv": "^5.2",
"eftec/bladeone": "^3.47"
},
"require-dev": {
"symfony/var-dumper": "^5.2",
"phpunit/phpunit": "^9.5",
"filp/whoops": "^2.9"
},
"autoload": {
"psr-4": {
"Rslanzi\\Minimal\\": "src/Minimal/",
"App\\": "app/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Rslanzi\\Minimal\\Tests\\": "tests/",
"App\\": "app/"
},
"files": [
"src/helpers.php"
]
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
},
"minimum-stability": "alpha"
}