-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1008 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 1008 Bytes
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
{
"name": "recruiterphp/clock",
"description": "Clock and Date library created before PSR alternative existed",
"license": "MIT",
"authors": [
{
"name": "Contributors",
"homepage": "https://github.com/recruiterphp/clock/graphs/contributors"
}
],
"require": {
"php": "^8.4",
"ext-mongodb": ">=1.15",
"symfony/clock": "^7.3 || ^8.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.47",
"friendsofphp/php-cs-fixer": "^3.85",
"giorgiosironi/eris": "^1.0",
"phpunit/phpunit": "^12.3",
"rector/rector": "^2.1"
},
"autoload": {
"psr-4": {
"Recruiter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Recruiter\\": [
"tests/"
]
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"sort-packages": true
}
}