-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.7 KB
/
Copy pathcomposer.json
File metadata and controls
59 lines (59 loc) · 1.7 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
{
"name": "myerscode/acorn-framework",
"description": "A framework for creating powerful PHP CLI applications",
"type": "library",
"authors": [
{
"name": "Fred Myerscough",
"email": "oniice@gmail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"elvanto/litemoji": "^4.3",
"league/container": "^3.3",
"myerscode/config": "^1.0",
"myerscode/package-discovery": "1.0.0",
"myerscode/utilities-bags": "^2.0",
"myerscode/utilities-files": "^2.0",
"myerscode/utilities-strings": "^2.0",
"nesbot/carbon": "^2.62",
"psr/log": "^1.1",
"psr/simple-cache": "^3.0",
"symfony/console": "^6.0",
"symfony/event-dispatcher": "^6.0",
"symfony/filesystem": "^6.0",
"symfony/finder": "^6.0",
"symfony/process": "^6.3"
},
"require-dev": {
"mockery/mockery": "^1.4",
"myerscode/acorn-testing": "dev-main",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"files": [
"src/Foundation/Helpers.php"
],
"psr-4": {
"Myerscode\\Acorn\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"tests": "vendor/bin/phpunit --testdox --no-coverage --colors=always",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --testdox --colors=always",
"phpcs": "vendor/bin/phpcs src tests --standard=PSR12"
}
}