-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 982 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 982 Bytes
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
{
"name": "ratnadeep/LightPHP",
"type": "PHP Framework",
"description": "LightPHP is a light PHP micro framework that helps you quickly write simple yet powerful APIs",
"keywords": ["framework","micro","api","router"],
"homepage": "http://profcart.com",
"license": "MIT",
"authors": [
{
"name": "Ratnadeep Deb",
"email": "debratnadeep84@gmail.com",
"homepage": "https://github.com/ratnagithub"
}
],
"require": {
"php": ">=7.0.0",
"zendframework/zend-diactoros": "1.3.*",
"symfony/yaml": "3.*",
"level-2/dice": "^2.0",
"jan-swiecki/simple-annotations": "0.3.1",
"bshaffer/oauth2-server-php": "1.8.0"
},
"require-dev": {
"phpunit/phpunit": "5.5.*",
"mikey179/vfsStream": "1.6.4"
},
"autoload": {
"psr-4": {
"LightPHP\\": "src"
}
},
"scripts": {
"test": [
"@phpunit",
"@phpcs"
],
"phpunit": "php vendor/bin/phpunit",
"phpcs": "php vendor/bin/phpcs"
}
}