This repository has been archived by the owner on Dec 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (60 loc) · 1.96 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
62
{
"name": "selami/foundation",
"type": "framework",
"description": "A No-framework Framework for Selamis written in PHP 7",
"keywords": ["Framework", "Micro Framework", "Diactoros", "Twig"],
"homepage": "https://github.com/selamiphp/core",
"license": "MIT",
"authors": [
{
"name": "Mehmet Korkmaz",
"email": "[email protected]",
"homepage": "https://mkorkmaz.com"
}
],
"require": {
"php": "^7.2",
"psr/container": "^1.0",
"container-interop/container-interop": "^1.2",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"selami/stdlib": "^1.8",
"selami/router": "^1.1",
"selami/views": "^0.9",
"zendframework/zend-config": "^3.2",
"zendframework/zend-diactoros": "^2.1"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"codeception/codeception": "^2.5",
"php-coveralls/php-coveralls": "^2.1",
"symfony/http-foundation": "^4.2",
"squizlabs/php_codesniffer": "^3.4",
"phpstan/phpstan": "^0.10.6",
"zendframework/zend-servicemanager": "^3.3",
"zendframework/zend-stdlib": "^3.2",
"zendframework/zend-stratigility": "^3.0",
"zendframework/zend-httphandlerrunner": "^1.0",
"vlucas/phpdotenv": "^2.5",
"twig/twig": "^2.6",
"twig/extensions": "^1.5"
},
"autoload": {
"psr-4": {
"Selami\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MyApp\\": "test/resources/app/"
}
},
"scripts": {
"unit-tests": "vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml --configuration ./phpunit.xml",
"phpstan": "vendor/bin/phpstan analyse -l 7 src test/resources/app",
"phpstan-test": "vendor/bin/phpstan analyse -l 7 -c phpstan.test.neon test/SelamiTests",
"phpcs": "vendor/bin/phpcs --standard=PSR2 src test test/resources/app/Contents",
"phpcbf": "vendor/bin/phpcbf --standard=PSR2 src test test/resources/app/Contents",
"clear-test-cache-files": "rm -rf test/resources/app/cache/*"
}
}