-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.46 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
{
"name": "joshuamc1/jmframework",
"description": "JMFramework - JMProjects, PHP Framework.",
"type": "project",
"keywords": [
"php",
"php8",
"framework",
"JMFramework",
"JMProjects"
],
"require": {
"illuminate/console": "^9.0",
"symfony/event-dispatcher": "^6.0",
"illuminate/filesystem": "^9.0",
"vlucas/phpdotenv": "^5.6",
"twig/twig": "^3.0",
"symfony/finder": "^6.4",
"illuminate/database": "^9.0",
"jasny/twig-extensions": "^1.3"
},
"license": "MIT",
"autoload": {
"psr-4": {
"App\\": "app/",
"Lib\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"bin": [
"console"
],
"authors": [
{
"name": "Joshua Mclean",
"email": "[email protected]",
"role": "Developer"
}
],
"scripts": {
"test": "./vendor/bin/phpunit test/",
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php console key:generate"
]
},
"support": {
"email": "[email protected]"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"minimum-stability": "stable",
"prefer-stable": true
}