-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 2.17 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 2.17 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
{
"minimum-stability": "dev",
"require": {
"php": ">=5.1.0",
"yiisoft/yii": "1.1.31",
"guzzlehttp/guzzle": "^6.0",
"symfony/validator": "^4.0",
"jms/serializer": "3.29.1",
"goetas-webservices/xsd2php-runtime": "^0.2.2",
"fakerphp/faker": "^1.23",
"bensontrent/firestore-php": "^3.1",
"ramsey/uuid": "^4.2",
"websupport/yii-sentry": "0.x-dev",
"scssphp/scssphp": "^1.13.0"
},
"require-dev": {
"goetas-webservices/xsd2php": "^0.4",
"phpmd/phpmd": "^2.13",
"squizlabs/php_codesniffer": "^3.7",
"friendsofphp/php-cs-fixer": "^3.3",
"codeception/codeception": "^4.2",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-asserts": "^1.0.0",
"codeception/module-webdriver": "^1.4",
"phpunit/php-code-coverage": "^7.0",
"rector/rector": "dev-main",
"goetas-webservices/xsd2php-runtime": "0.2.16",
"phpunit/phpunit": "^8.5",
"phpunit/phpunit-selenium": "^8.0"
},
"scripts": {
"mess": "./vendor/bin/phpmd",
"sass": "./vendor/bin/pscss",
"sass:build": "docker compose run --rm --entrypoint /opt/dart-sass/sass sass /sass/main.scss:/css/main.css --no-source-map --style=compressed",
"sass:watch": "@docker compose up sass",
"test": "./vendor/bin/codecept run acceptance --steps",
"sagres-gen": "./vendor/bin/xsd2php convert app/modules/sagres/config.yml app/modules/sagres/soap/Educacao.xsd",
"migrate": "docker exec tag-app php /app/app/yiic sqlmigration run",
"migrate:dry": "docker exec tag-app php /app/app/yiic sqlmigration run",
"lint:fix": "docker exec -u root -e PHP_CS_FIXER_IGNORE_ENV=1 tag-app ./vendor/bin/php-cs-fixer fix",
"clear-assets": "docker exec tag-app sh -c \"find /app/assets -mindepth 1 -delete\"",
"dedup:instructors": "docker exec tag-app php /app/app/yiic deduplicateinstructors",
"dedup:instructors:commit": "docker exec tag-app php /app/app/yiic deduplicateinstructors --commit"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}