-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (48 loc) · 1.2 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
{
"name": "avanciro/skel",
"description": "Skel - A Lightweight PHP framework.",
"version": "2.0.0",
"type": "project",
"authors": [
{
"name": "Shyamin Ayesh",
"email": "me@shyamin.com",
"homepage": "https://shyamin.com"
}
],
"require": {
"php": ">=7.0",
"symfony/routing": "^5.0",
"symfony/http-foundation": "^5.0",
"illuminate/database": "^7.9",
"twig/twig": "^2.11"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"symfony/console": "^5.0"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-intl-idn": "*"
},
"autoload": {
"psr-4": {
"Avanciro\\Skel\\Console\\": "app/Console",
"Avanciro\\Skel\\Core\\": "app/Core",
"App\\Controller\\": "controllers/",
"App\\Model\\": "models/"
}
},
"config": {
"vendor-dir": "libs",
"process-timeout": 0,
"optimize-autoloader": true
},
"scripts": {
"test": [ "./libs/bin/phpunit" ]
},
"minimum-stability": "dev",
"license": "MIT",
"homepage": "https://avanciro.com"
}