-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.35 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
{
"name": "froq/test",
"homepage": "http://github.com/froq/test",
"description": "Tests of Froq! components.",
"keywords": ["froq", "test"],
"license": "Apache-2.0",
"authors": [{"name": "Kerem Güneş"}],
"require": {
"php": "^8.2",
"ext-pdo": "*",
"ext-sodium": "*",
"ext-openssl": "*",
"phpunit/phpunit": "^9.5",
"froq/froq-acl": "^7.0",
"froq/froq-cache": "^7.0",
"froq/froq-collection": "^7.0",
"froq/froq-common": "^7.0",
"froq/froq-datetime": "^7.0",
"froq/froq-dom": "^7.0",
"froq/froq-encoding": "^7.0",
"froq/froq-encrypting": "^7.0",
"froq/froq-event": "^7.0",
"froq/froq-file": "^7.0",
"froq/froq-log": "^7.0",
"froq/froq-pagination": "^7.0",
"froq/froq-reflection": "^7.0",
"froq/froq-session": "^7.0",
"froq/froq-validation": "^7.0",
"froq/froq-util": "^7.0"
},
"scripts": {
"test": "vendor/bin/phpunit --verbose --colors --bootstrap=./boot.php",
"test-all": "vendor/bin/phpunit --verbose --colors --bootstrap=./boot.php ./"
},
"scripts-descriptions": {
"test": "Run a component test (eg: composer test -- ./acl/ or composer test -- ./acl/AclTest.php).",
"test-all": "Run all components tests (eg: composer test-all)."
}
}