-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 906 Bytes
/
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
{
"name": "aegisfang/core",
"description": "The AegisFang Framework Core",
"license": "MIT",
"authors": [
{
"name": "Trevor Thompson",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"AegisFang\\": "src/"
}
},
"require": {
"ext-json": "*",
"ext-pdo": "*",
"psr/container": "^1.0",
"psr/log": "^1.0",
"vlucas/phpdotenv": "^3.6",
"symfony/console": "^4.3",
"monolog/monolog": "^2.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^8.4",
"squizlabs/php_codesniffer": "^3.5"
},
"scripts": {
"sniff": "phpcs -p --colors --standard=ruleset.xml",
"check": "composer sniff && composer test-full",
"test-full": "vendor/bin/phpunit --colors=always --testsuite unit_full",
"test-no-db": "vendor/bin/phpunit --colors=always --testsuite unit_no_db"
}
}