-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.04 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
{
"name": "attitude/phpx",
"description": "PHPX is to PHP what JSX is to JS",
"type": "package",
"license": "MIT",
"authors": [
{
"name": "Martin Adamko",
"email": "[email protected]"
}
],
"scripts": {
"test": "./vendor/bin/pest",
"test:coverage": "./vendor/bin/pest --coverage",
"test:watch": "./vendor/bin/pest --watch"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Attitude\\PHPX\\Compiler\\": "src/compiler/",
"Attitude\\PHPX\\Parser\\": "src/parser/",
"Attitude\\PHPX\\Renderer\\": "src/renderer/",
"Attitude\\PHPX\\React\\": "src/examples/react"
}
},
"require": {
"php": "^8",
"psr/log": "^3.0"
},
"require-dev": {
"pestphp/pest": "^2.25",
"pestphp/pest-plugin-watch": "^2.0",
"monolog/monolog": "^3.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}