-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.53 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.53 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
{
"name": "pletfix/app",
"description": "The Pletfix Application Skeleton.",
"keywords": ["pletfix", "framework", "kiss", "fullstack", "skeleton"],
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=5.6.4",
"pletfix/core": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"behat/mink": "^1.7",
"behat/mink-browserkit-driver": "dev-master",
"behat/mink-goutte-driver": "^1.2",
"leafo/scssphp": "^0.6.6",
"natxet/cssmin": "^3.0",
"oyejorge/less.php": "v1.7.0.10",
"tedivm/jshrink": "^1.1",
"npm-asset/bootstrap": "^3.3.7",
"npm-asset/eonasdan-bootstrap-datetimepicker": "^4.17.37",
"npm-asset/font-awesome": "^4.6.3",
"npm-asset/jquery": "^2.2.4",
"npm-asset/moment": "^2.10",
"npm-asset/selectize": "^0.12.3"
},
"autoload": {
"classmap": [
"library/classes",
"library/facades"
],
"files": [
"library/functions/helpers.php"
],
"psr-4": {
"App\\": "app/"
}
},
"scripts": {
"post-root-package-install": [
"App\\Handlers\\ComposerHandler::postRootPackageInstall"
],
"post-create-project-cmd": [
"App\\Handlers\\ComposerHandler::postCreateProjectCmd"
]
}
}