-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.89 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 1.89 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "ironphp/app",
"homepage": "https://github.com/ironphp/app",
"description": "The IronPHP Framework 1.0 application skeleton",
"type": "project",
"keywords": [
"php",
"framework",
"mvc",
"ironphp",
"frontcontroller",
"iron-php",
"ironphp-framework",
"app",
"ironphp-app"
],
"support": {
"issues": "https://github.com/ironphp/app/issues",
"forum": "https://www.facebook.com/IronPHP-Framwork-325690624644002",
"source": "https://github.com/ironphp/app",
"email": "gaurangkumarp@gmail.com"
},
"authors": [
{
"name": "GaurangKumar",
"email": "gaurangkumarp@gmail.com",
"homepage": "https://twitter.com/gaurangkumarp",
"role": "Creater and Developer"
}
],
"require": {
"ironphp/ironphp": "@dev"
},
"require-dev": {
"codeception/module-asserts": "@dev",
"codeception/module-webdriver": "@dev",
"nunomaduro/larastan": "@dev",
"phpunit/phpunit": "@dev"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"config/paths.php"
]
},
"bin": [
"jarvis"
],
"minimum-stability": "dev",
"prefer-stable": false,
"scripts": {
"pre-install-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-autoload-dump": [],
"post-install-dump": [],
"post-update-dump": [],
"post-create-project-cmd": [
"@php jarvis key"
]
}
}