-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) · 3.01 KB
/
composer.json
File metadata and controls
91 lines (91 loc) · 3.01 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "andersoncontreira/php-design-patterns-guide",
"description": "Project containing real examples of design patterns, contain a guide to help the developers interest in this solutions",
"type": "project",
"config": {
"bin-dir": "bin/",
"sort-packages": true
},
"require": {
"php": "^7.4 || ~8.0",
"ext-json": "*",
"ext-pdo": "*",
"ext-simplexml": "*",
"ext-tokenizer": "*",
"ext-xmlwriter": "*",
"darkaonline/swagger-lume": "8.*",
"flipbox/lumen-generator": "^9.1",
"illuminate/config": "^8.83",
"illuminate/container": "^8.83",
"illuminate/database": "^8.83",
"illuminate/pagination": "^8.83",
"laravel/lumen-framework": "^8.3",
"league/config": "^1.1",
"monolog/monolog": "*",
"nesbot/carbon": "^2.58",
"php-middleware/request-id": "^4.0",
"predis/predis": "^1.1",
"psr/cache": "^1.0.1",
"psr/container": "^1.0.0",
"psr/http-factory": "^1.0.1",
"psr/http-message": "^1.0.1",
"psr/http-server-handler": "^1.0.1",
"psr/http-server-middleware": "^1.0.1",
"psr/log": "^1.1.3",
"psr/simple-cache": "^1.0.1",
"ramsey/uuid": "4.2.3",
"respect/validation": "^1.1",
"symfony/console": "^5.4",
"tuupola/cors-middleware": "^1.1",
"tuupola/slim-jwt-auth": "^3.4",
"vlucas/phpdotenv": "^5.4.1",
"zircote/swagger-php": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.8",
"phpspec/prophecy-phpunit": "*"
},
"license": "MIT",
"authors": [
{
"name": "Anderson Contreira",
"email": "anderson.contreira@gmail.com"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Application\\": "src/Application/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Application\\Tests\\": "tests/"
},
"files": [
"src/helpers.php"
]
},
"scripts": {
"check": [
"@lint",
"@test"
],
"guidelines": "./scripts/guidelines-checker.py",
"migrate": "php artisan migrate --database=mysql",
"migrate:local": "php artisan migrate --database=local",
"docs": " php artisan swagger-lume:generate",
"start": "./scripts/runenv.sh",
"testenv": "./scripts/testenv.sh",
"lint": "./bin/php-cs-fixer fix --diff src",
"test": "./bin/phpunit --configuration phpunit.xml --testsuite unit-tests",
"test:cov": "./bin/phpunit --configuration phpunit.xml --testsuite unit-tests --coverage-html target/unit/coverage_html --coverage-clover target/unit/coverage.xml --coverage-text='target/unit/coverage.txt' --log-junit target/unit/report.xml",
"test:component": "./bin/phpunit --configuration phpunit.xml --testsuite component-tests",
"test:component-cov": "./bin/phpunit --configuration phpunit.xml --testsuite component-tests --coverage-html target/component/coverage_html --coverage-clover target/component/coverage.xml --coverage-text='target/component/coverage.txt' --log-junit target/component/report.xml"
}
}